Allow return status to be specified using quitWithStatus.

This commit is contained in:
Daniel Buckmaster 2014-09-21 18:27:31 +10:00
parent d08e594316
commit 9f47032522
13 changed files with 52 additions and 18 deletions

View file

@ -375,6 +375,7 @@ extern "C"
{
bool torque_engineinit(S32 argc, const char **argv);
S32 torque_enginetick();
S32 torque_getreturnstatus();
bool torque_engineshutdown();
};
@ -390,7 +391,7 @@ S32 TorqueMain(int argc, const char **argv)
torque_engineshutdown();
return 0;
return torque_getreturnstatus();
}