mirror of https://github.com/axmolengine/axmol.git
Remove warn error on Exit
Change the return error on Linux to -1 to standard EXIT_SUCCESS value.
This commit is contained in:
parent
4d5d5c5a5d
commit
651b7fc13c
|
@ -104,7 +104,7 @@ int Application::run()
|
|||
director = nullptr;
|
||||
}
|
||||
glview->release();
|
||||
return -1;
|
||||
return EXIT_SUCCESS;
|
||||
}
|
||||
|
||||
void Application::setAnimationInterval(double interval)
|
||||
|
|
Loading…
Reference in New Issue