giving up for now

This commit is contained in:
lepelog
2022-01-12 19:23:08 +01:00
parent e1903d20cf
commit ef1757a63b
5 changed files with 1186 additions and 393 deletions
+1 -1
View File
@@ -6,7 +6,7 @@ T* JSUConvertOffsetToPtr(const void* ptr, const void* offset) {
if (ptr == NULL) {
return NULL;
} else {
return (T*) ((s32)ptr + (s32)offset);
return (T*)((s32)ptr + (s32)offset);
}
}