diff --git a/sdl.c b/sdl.c index a87f20b3aa..98d1805c60 100644 --- a/sdl.c +++ b/sdl.c @@ -243,10 +243,13 @@ static const uint16 default_resolutions[][2] = { { 800, 600}, {1024, 768}, {1152, 864}, + {1280, 800}, {1280, 960}, {1280, 1024}, {1400, 1050}, - {1600, 1200} + {1600, 1200}, + {1680, 1050}, + {1920, 1200} }; static void GetVideoModes(void) diff --git a/win32.c b/win32.c index 1a8bbb324c..9a2e0ab70e 100644 --- a/win32.c +++ b/win32.c @@ -568,14 +568,17 @@ static bool AllocateDibSection(int w, int h) } static const uint16 default_resolutions[][2] = { - {640,480}, - {800,600}, - {1024,768}, - {1152,864}, - {1280,960}, - {1280,1024}, - {1400,1050}, - {1600,1200}, + { 640, 480}, + { 800, 600}, + {1024, 768}, + {1152, 864}, + {1280, 800}, + {1280, 960}, + {1280, 1024}, + {1400, 1050}, + {1600, 1200}, + {1680, 1050}, + {1920, 1200} }; static void FindResolutions()