(svn r1529) -Feature: [1090950] Adding 16:10 resolutions for mainly laptops (doode)

This commit is contained in:
darkvater 2005-01-15 20:43:01 +00:00
parent 1b00f36520
commit 633786f55e
2 changed files with 15 additions and 9 deletions

5
sdl.c
View File

@ -243,10 +243,13 @@ static const uint16 default_resolutions[][2] = {
{ 800, 600}, { 800, 600},
{1024, 768}, {1024, 768},
{1152, 864}, {1152, 864},
{1280, 800},
{1280, 960}, {1280, 960},
{1280, 1024}, {1280, 1024},
{1400, 1050}, {1400, 1050},
{1600, 1200} {1600, 1200},
{1680, 1050},
{1920, 1200}
}; };
static void GetVideoModes(void) static void GetVideoModes(void)

19
win32.c
View File

@ -568,14 +568,17 @@ static bool AllocateDibSection(int w, int h)
} }
static const uint16 default_resolutions[][2] = { static const uint16 default_resolutions[][2] = {
{640,480}, { 640, 480},
{800,600}, { 800, 600},
{1024,768}, {1024, 768},
{1152,864}, {1152, 864},
{1280,960}, {1280, 800},
{1280,1024}, {1280, 960},
{1400,1050}, {1280, 1024},
{1600,1200}, {1400, 1050},
{1600, 1200},
{1680, 1050},
{1920, 1200}
}; };
static void FindResolutions() static void FindResolutions()