1
0
mirror of https://github.com/FunkyFr3sh/cnc-ddraw.git synced 2025-03-15 06:04:49 +01:00

adjust RESLIST_MINI

This commit is contained in:
FunkyFr3sh 2023-08-17 18:41:19 +02:00
parent 0013c746af
commit 84a06f8fe3

View File

@ -72,19 +72,20 @@ HRESULT dd_EnumDisplayModes(
}
BOOL rlf = g_ddraw->resolutions == RESLIST_FULL;
BOOL rlm = g_ddraw->resolutions == RESLIST_MINI;
SIZE resolutions[] =
{
{ 320, 200 },
{ 320, 240 },
{ 512, 384 },
{ rlm ? 0 : 512, rlm ? 0 : 384 },
{ 640, 400 },
{ 640, 480 },
{ 800, 600 },
{ 1024, 768 },
{ 1280, 1024 },
{ 1600, 1200 },
{ 1280, 720 },
{ rlm ? 0 : 1600, rlm ? 0 : 1200 },
{ rlm ? 0 : 1280, rlm ? 0 : 720 },
{ rlf ? 1024 : 0, rlf ? 600 : 0 },
/* 4:3 */
{ rlf ? 1280 : 0, rlf ? 960 : 0 },