1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Returning correct app failure codes if the app quits before finishing initialisation.

This commit is contained in:
jules 2014-08-20 20:57:51 +01:00
parent 4604767220
commit de1d07090a
2 changed files with 2 additions and 2 deletions

View file

@ -232,7 +232,7 @@ int JUCEApplicationBase::main()
jassert (app != nullptr);
if (! app->initialiseApp())
return 0;
return app->getApplicationReturnValue();
JUCE_TRY
{