mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-07-10 20:58:37 +02:00
don't early _exit on Linux
This commit is contained in:
parent
88ab52d340
commit
2425baf6e6
1 changed files with 1 additions and 1 deletions
|
@ -203,7 +203,7 @@ int main(int argc, const char* argv[]) {
|
||||||
Application::shutdownPlugins();
|
Application::shutdownPlugins();
|
||||||
|
|
||||||
qCDebug(interfaceapp, "Normal exit.");
|
qCDebug(interfaceapp, "Normal exit.");
|
||||||
#ifndef DEBUG
|
#if defined(DEBUG) && !defined(Q_OS_LINUX)
|
||||||
// HACK: exit immediately (don't handle shutdown callbacks) for Release build
|
// HACK: exit immediately (don't handle shutdown callbacks) for Release build
|
||||||
_exit(exitCode);
|
_exit(exitCode);
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in a new issue