- limit minimum screen size to 640x400.

The current menu system simply does not work that well with 320x200, rendering the game hard to use at that tiny screen size. This is a clear case where the work required to keep it operational stands in no relation to the benefit.
This commit is contained in:
Christoph Oelckers 2019-03-31 09:13:22 +02:00
commit ab16d3cd72
6 changed files with 17 additions and 17 deletions

View file

@ -525,8 +525,8 @@ LRESULT CALLBACK WndProc (HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
}
else
{
mmi->ptMinTrackSize.x = 320;
mmi->ptMinTrackSize.y = 200;
mmi->ptMinTrackSize.x = 640;
mmi->ptMinTrackSize.y = 400;
}
return 0;
}