diff options
| author | void_17 <61356189+void2012@users.noreply.github.com> | 2026-03-02 01:28:47 +0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-03-02 01:28:47 +0700 |
| commit | 99a8c53bc1f84042e682a67abbd3f49d4b94dba8 (patch) | |
| tree | 6259d92e3482af0151ff69e80bc2c33b530d698a /Minecraft.Client/Windows64/Windows64_Minecraft.cpp | |
| parent | 3bf5db95841e950c0d4424f542a692fcd8b29642 (diff) | |
| parent | 3db164d913a0e6e464cc9f32c6c471cbea7a46e7 (diff) | |
Merge pull request #33 from APAmk2/main
Windows: More proper shutdown
Diffstat (limited to 'Minecraft.Client/Windows64/Windows64_Minecraft.cpp')
| -rw-r--r-- | Minecraft.Client/Windows64/Windows64_Minecraft.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Minecraft.Client/Windows64/Windows64_Minecraft.cpp b/Minecraft.Client/Windows64/Windows64_Minecraft.cpp index 931e7f17..1bffe317 100644 --- a/Minecraft.Client/Windows64/Windows64_Minecraft.cpp +++ b/Minecraft.Client/Windows64/Windows64_Minecraft.cpp @@ -1034,7 +1034,7 @@ int APIENTRY _tWinMain(_In_ HINSTANCE hInstance, } #endif MSG msg = {0}; - while( WM_QUIT != msg.message ) + while( WM_QUIT != msg.message && !app.m_bShutdown) { if( PeekMessage( &msg, NULL, 0, 0, PM_REMOVE ) ) { |
