Tiny source tweaks

Fixing some errors in the C runtime and making the main() formatting
more similar to everything else.
This commit is contained in:
KeybadeBlox 2026-02-14 23:12:06 -05:00
parent 84c165a0af
commit d81bd646fa
2 changed files with 6 additions and 5 deletions

View file

@ -14,8 +14,8 @@ Game * g_game;
// Address: 0x0006F9E0
// Matching: yes
void main(void) {
g_game = new Game(NULL, 0);
g_game->initRootExecObj();
g_game->mainLoop();
delete g_game;
g_game = new Game(NULL, 0);
g_game->initRootExecObj();
g_game->mainLoop();
delete g_game;
}