diff options
author | Nikolay Korolev <nickvnuk@gmail.com> | 2020-09-30 14:19:55 +0200 |
---|---|---|
committer | Nikolay Korolev <nickvnuk@gmail.com> | 2020-09-30 14:19:55 +0200 |
commit | 4c582b19eb52904c56cf6a62ffb8655ed1e426e2 (patch) | |
tree | cde4b80f479c84fe4a164fe3daef1309785f17be /src/skel | |
parent | Merge remote-tracking branch 'upstream/miami' into miami (diff) | |
parent | Merge remote-tracking branch 'origin/master' into miami (diff) | |
download | re3-4c582b19eb52904c56cf6a62ffb8655ed1e426e2.tar re3-4c582b19eb52904c56cf6a62ffb8655ed1e426e2.tar.gz re3-4c582b19eb52904c56cf6a62ffb8655ed1e426e2.tar.bz2 re3-4c582b19eb52904c56cf6a62ffb8655ed1e426e2.tar.lz re3-4c582b19eb52904c56cf6a62ffb8655ed1e426e2.tar.xz re3-4c582b19eb52904c56cf6a62ffb8655ed1e426e2.tar.zst re3-4c582b19eb52904c56cf6a62ffb8655ed1e426e2.zip |
Diffstat (limited to 'src/skel')
-rw-r--r-- | src/skel/win/win.cpp | 21 |
1 files changed, 20 insertions, 1 deletions
diff --git a/src/skel/win/win.cpp b/src/skel/win/win.cpp index cc106e39..1f609553 100644 --- a/src/skel/win/win.cpp +++ b/src/skel/win/win.cpp @@ -1099,8 +1099,11 @@ MainWndProc(HWND window, UINT message, WPARAM wParam, LPARAM lParam) if ( wParam == VK_SHIFT ) _InputTranslateShiftKeyUpDown(&ks); - +#ifdef FIX_BUGS + break; +#else return 0L; +#endif } case WM_KEYUP: @@ -1113,7 +1116,11 @@ MainWndProc(HWND window, UINT message, WPARAM wParam, LPARAM lParam) if ( wParam == VK_SHIFT ) _InputTranslateShiftKeyUpDown(&ks); +#ifdef FIX_BUGS + break; +#else return 0L; +#endif } case WM_SYSKEYDOWN: @@ -1126,7 +1133,11 @@ MainWndProc(HWND window, UINT message, WPARAM wParam, LPARAM lParam) if ( wParam == VK_SHIFT ) _InputTranslateShiftKeyUpDown(&ks); +#ifdef FIX_BUGS + break; +#else return 0L; +#endif } case WM_SYSKEYUP: @@ -1139,7 +1150,11 @@ MainWndProc(HWND window, UINT message, WPARAM wParam, LPARAM lParam) if ( wParam == VK_SHIFT ) _InputTranslateShiftKeyUpDown(&ks); +#ifdef FIX_BUGS + break; +#else return 0L; +#endif } case WM_ACTIVATEAPP: @@ -2508,8 +2523,10 @@ WinMain(HINSTANCE instance, { if ( gGameState == GS_PLAYING_GAME ) CGame::ShutDown(); +#ifndef MASTER else if ( gGameState == GS_ANIMVIEWER ) CAnimViewer::Shutdown(); +#endif CTimer::Stop(); @@ -2533,8 +2550,10 @@ WinMain(HINSTANCE instance, if ( gGameState == GS_PLAYING_GAME ) CGame::ShutDown(); +#ifndef MASTER else if ( gGameState == GS_ANIMVIEWER ) CAnimViewer::Shutdown(); +#endif DMAudio.Terminate(); |