Renders on PSP again

This commit is contained in:
2025-09-12 00:25:17 -05:00
parent 964a9f64f2
commit 46a94ecacd
17 changed files with 105 additions and 31 deletions

View File

@@ -31,7 +31,12 @@ errorret_t engineInit(void) {
errorChain(displayInit());
rpgInit();
consoleExec("exec init.dcf");
// Init scripts
#if PSP
consoleExec("exec init_psp.dcf");
#else
consoleExec("exec init.dcf");
#endif
errorOk();
}