updated handler and fixed state in the process

This commit is contained in:
herbglitch 2022-12-16 01:09:01 -07:00
parent 55e8c44221
commit 5a0d1af942
5 changed files with 24 additions and 18 deletions

View file

@ -2,6 +2,7 @@
#include <stddef.h>
void ARC_State_Update(void *data){
ARC_State *temp = (ARC_State *)data;
((ARC_State *)data)->updateFn(((ARC_State *)data)->data);
}