Skip to content

Commit b340d1b

Browse files
committed
Hackfix: Disable quit handler for now
1 parent 7399596 commit b340d1b

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

Code/server_runner/main.cpp

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -223,16 +223,18 @@ int main(int argc, char** argv)
223223
}
224224
*/
225225

226-
ScopedCrashHandler _(true, true);
226+
//ScopedCrashHandler _(true, true);
227227

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

230231
// Keep stack free.
231232
const auto cpRunner{std::make_unique<DediRunner>(argc, argv)};
232233
if (bConsole)
233234
{
234235
cpRunner->StartTerminalIO();
235236
}
237+
236238
cpRunner->RunGSThread();
237239

238240
return 0;

0 commit comments

Comments
 (0)