diff options
author | darkvater <darkvater@openttd.org> | 2005-01-15 20:43:01 +0000 |
---|---|---|
committer | darkvater <darkvater@openttd.org> | 2005-01-15 20:43:01 +0000 |
commit | 633786f55ea603fe2feafd1421b3c04dd4e2614f (patch) | |
tree | 96275de8d44e629918997c906c74cbcd5fdaa856 | |
parent | 1b00f36520f9630581b7f2857fabccc9fefcf5ed (diff) | |
download | openttd-633786f55ea603fe2feafd1421b3c04dd4e2614f.tar.xz |
(svn r1529) -Feature: [1090950] Adding 16:10 resolutions for mainly laptops (doode)
-rw-r--r-- | sdl.c | 5 | ||||
-rw-r--r-- | win32.c | 19 |
2 files changed, 15 insertions, 9 deletions
@@ -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) @@ -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() |