Clang warning fixes; remove unneeded nuklear files; remove assumed window size

This commit is contained in:
2023-09-04 06:20:55 +00:00
parent 467f7b29ea
commit f41f547f63
33 changed files with 84 additions and 3127 deletions

View File

@@ -34,7 +34,7 @@ struct gameobject *id2go(int id) {
}
int body2id(cpBody *body) {
return (int)cpBodyGetUserData(body);
return *(int*)cpBodyGetUserData(body);
}
cpBody *id2body(int id) {