Skip to content

Commit

Permalink
Hackfix: Disable quit handler for now
Browse files Browse the repository at this point in the history
  • Loading branch information
Force67 committed Nov 26, 2024
1 parent 7399596 commit b340d1b
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Code/server_runner/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -223,16 +223,18 @@ int main(int argc, char** argv)
}
*/

ScopedCrashHandler _(true, true);
//ScopedCrashHandler _(true, true);

RegisterQuitHandler();
// Note(Vince): This started crashing on 1.7+ lets disable it for now.
// RegisterQuitHandler();

// Keep stack free.
const auto cpRunner{std::make_unique<DediRunner>(argc, argv)};
if (bConsole)
{
cpRunner->StartTerminalIO();
}

cpRunner->RunGSThread();

return 0;
Expand Down

0 comments on commit b340d1b

Please sign in to comment.