forcing exit of the app when quitting Löve

This commit is contained in:
fysx
2013-12-16 23:58:45 +01:00
parent 98c3f93048
commit f95fbc8a70
+6
View File
@@ -246,6 +246,12 @@ int main(int argc, char **argv)
delete [] hack_argv;
}
#endif // LOVE_LEGENDARY_UTF8_ARGV_HACK || LOVE_LEGENDARY_APP_ARGV_HACK
SDL_Quit();
#ifdef __ANDROID__
exit(retval);
#endif
return retval;
}