summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sdl.c5
-rw-r--r--win32.c19
2 files changed, 15 insertions, 9 deletions
diff --git a/sdl.c b/sdl.c
index a87f20b3a..98d1805c6 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 1a8bbb324..9a2e0ab70 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()