aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.Client/Windows64
diff options
context:
space:
mode:
authorvoid_17 <61356189+void2012@users.noreply.github.com>2026-03-02 00:42:53 +0700
committerGitHub <noreply@github.com>2026-03-02 00:42:53 +0700
commit44b68333a31727f2869470acb8df3dab2c653f68 (patch)
treece5ce0a4e6e34c44241085481732b222b68c7013 /Minecraft.Client/Windows64
parente6e1b4ef3885f5966a4d33765d3821aaff9f00bb (diff)
parent31e993d6eeb3e93f47617224e4ee6f015ca58913 (diff)
Merge pull request #28 from rtm516/feature/exit
Fix game exit
Diffstat (limited to 'Minecraft.Client/Windows64')
-rw-r--r--Minecraft.Client/Windows64/Windows64_App.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/Minecraft.Client/Windows64/Windows64_App.cpp b/Minecraft.Client/Windows64/Windows64_App.cpp
index ef9f6cf6..a8b2d9cc 100644
--- a/Minecraft.Client/Windows64/Windows64_App.cpp
+++ b/Minecraft.Client/Windows64/Windows64_App.cpp
@@ -26,6 +26,8 @@ void CConsoleMinecraftApp::StoreLaunchData()
}
void CConsoleMinecraftApp::ExitGame()
{
+ // This is likely not the correct way to exit the game, but it will do for now
+ ExitProcess(0);
}
void CConsoleMinecraftApp::FatalLoadError()
{