Merge branch 'main' into pal

This commit is contained in:
Liam Coleman 2024-11-16 12:33:11 -06:00 committed by GitHub
commit de29cbfcf4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 25 additions and 1 deletions

21
src/REL/nisDll/main.c Normal file
View file

@ -0,0 +1,21 @@
#include "game/object.h"
void fn_1_68(omObjData *object);
void ObjectSetup(void)
{
Process *process = omInitObjMan(0xA, 0x2000);
omObjData *object = omAddObjEx(process, 0, 0, 0, -1, fn_1_68);
u32 *work = object->work;
}
void fn_1_68(omObjData *object)
{
s8 *work = (s8 *)object->work;
if (*work != 0) {
(void)work;
return;
}
}
#include "src/REL/executor.c"