diff options
Diffstat (limited to 'backends/gp32/gp32_main.cpp')
| -rw-r--r-- | backends/gp32/gp32_main.cpp | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/backends/gp32/gp32_main.cpp b/backends/gp32/gp32_main.cpp index ebada917fd..df0ed42d4b 100644 --- a/backends/gp32/gp32_main.cpp +++ b/backends/gp32/gp32_main.cpp @@ -65,16 +65,15 @@ void GpMain(void *arg) { gp_setCpuSpeed(g_vars.cpuSpeed); // FOR DEBUG PURPOSE! - int argc = 2; + int argc = 1; //char *argv[] = { "scummvm", "-enull", "-pgp:\\game\\dott\\", "tentacle" }; - char *argv[] = { "scummvm", "-enull", "-d3" }; - - //scummvm_main(argc, argv); + char *argv[] = { "scummvm", "-d9" }; g_system = new OSystem_GP32_create(); assert(g_system); // Invoke the actual ScummVM main entry point: + //int res = scummvm_main(argc, argv); int res = scummvm_main(1, NULL); g_system->quit(); // TODO: Consider removing / replacing this! return res; |
