mirror of
https://github.com/open-goal/jak-project
synced 2026-07-11 15:28:58 -04:00
working return integer tests as part of gtest
This commit is contained in:
+3
-2
@@ -229,7 +229,7 @@ void iop_runner(SystemThreadInterface& iface) {
|
||||
* Main function to launch the runtime.
|
||||
* Arguments are currently ignored.
|
||||
*/
|
||||
void exec_runtime(int argc, char** argv) {
|
||||
u32 exec_runtime(int argc, char** argv) {
|
||||
(void)argc;
|
||||
(void)argv;
|
||||
|
||||
@@ -262,5 +262,6 @@ void exec_runtime(int argc, char** argv) {
|
||||
|
||||
// join and exit
|
||||
tm.join();
|
||||
printf("GOAL Runtime Shutdown\n");
|
||||
printf("GOAL Runtime Shutdown (code %d)\n", MasterExit);
|
||||
return MasterExit;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user