Asset prog

This commit is contained in:
2025-08-25 10:16:55 -05:00
parent 947f21cac7
commit 8af2f044ed
23 changed files with 290 additions and 31 deletions

View File

@@ -6,6 +6,7 @@
*/
#include "engine/engine.h"
#include "console/console.h"
// PSP_MODULE_INFO("Dusk", 0, 1, 0);
// PSP_MAIN_THREAD_ATTR(PSP_THREAD_ATTR_USER | THREAD_ATTR_VFPU);
@@ -14,6 +15,9 @@ int main(int argc, char **argv) {
errorret_t ret;
ret = engineInit();
// Set console variable
if(argc > 0) consoleRegVar("sys_path", argv[0], NULL);
if(ret.code != ERROR_OK) {
errorCatch(errorPrint(ret));
return ret.code;