working on sprite config, kinda scared I'm f***ing everything up :)
This commit is contained in:
parent
da2be7780b
commit
8845cf78e0
7 changed files with 149 additions and 55 deletions
|
|
@ -75,7 +75,7 @@ void ARC_ConfigType_PointCopyFn(void **type, ARC_ParserTagToken *parsedData, ARC
|
|||
*type = (void *)point;
|
||||
}
|
||||
|
||||
void ARC_ConfigType_PointDestroyFn(void *type){
|
||||
void ARC_ConfigType_PointDestroyFn(ARC_Config *config, void *type){
|
||||
free((ARC_Point *)type);
|
||||
}
|
||||
|
||||
|
|
@ -187,6 +187,6 @@ void ARC_ConfigType_RectCopyFn(void **type, ARC_ParserTagToken *parsedData, ARC_
|
|||
*type = (void *)point;
|
||||
}
|
||||
|
||||
void ARC_ConfigType_RectDestroyFn(void *type){
|
||||
void ARC_ConfigType_RectDestroyFn(ARC_Config *config, void *type){
|
||||
free((ARC_Rect *)type);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue