feat(TopBar): Fastest quit in the west

This commit is contained in:
Yimura
2022-02-27 22:48:34 +01:00
parent 9ecffc7d68
commit 43f8ecef58

View File

@ -68,7 +68,9 @@ namespace big
if (ImGui::MenuItem("Rage Quit (hard crash)")) if (ImGui::MenuItem("Rage Quit (hard crash)"))
{ {
__debugbreak(); g_running = false;
TerminateProcess(GetCurrentProcess(), 0);
} }
ImGui::EndMenu(); ImGui::EndMenu();