config working, commented out the line throwing error for closing window. will fix soon

This commit is contained in:
herbglitch 2022-11-07 02:23:53 -07:00
parent 81b3ed9144
commit c5bef3bd16
5 changed files with 12 additions and 274 deletions

View file

@ -32,7 +32,7 @@ void ARC_Handler_Add(ARC_Handler *handler, void *data){
int8_t ARC_Handler_RemoveCompareFn(void *a, void *b){ return a == b; }
void ARC_Handler_Remove(ARC_Handler *handler, void *data){
ARC_Vector_Add(handler->trash, data);
// ARC_Vector_Add(handler->trash, data);
ARC_Vector_Remove(handler->data, data, ARC_Handler_RemoveCompareFn);
}