diff --git a/Minecraft.Client/Windows64/Windows64_Minecraft.cpp b/Minecraft.Client/Windows64/Windows64_Minecraft.cpp index 290835647..48040c664 100644 --- a/Minecraft.Client/Windows64/Windows64_Minecraft.cpp +++ b/Minecraft.Client/Windows64/Windows64_Minecraft.cpp @@ -431,14 +431,6 @@ LRESULT CALLBACK WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) return TRUE; } return DefWindowProc(hWnd, message, wParam, lParam); - case WM_SIZE: - { - // Set the screen width and height used for calculating the aspect ratio - g_iScreenWidth = LOWORD(lParam); - g_iScreenHeight = HIWORD(lParam); - app.DebugPrintf("width: %d, height: %d\n", g_iScreenWidth, g_iScreenHeight); - } - break; default: return DefWindowProc(hWnd, message, wParam, lParam); }