Remove warn error on Exit

Change the return error on Linux to  -1  to  standard EXIT_SUCCESS value.
This commit is contained in:
Luis Cabellos 2014-12-31 18:37:59 +01:00
parent 4d5d5c5a5d
commit 651b7fc13c
1 changed files with 1 additions and 1 deletions

View File

@ -104,7 +104,7 @@ int Application::run()
director = nullptr;
}
glview->release();
return -1;
return EXIT_SUCCESS;
}
void Application::setAnimationInterval(double interval)