Move hardcoded windowed resolution list to baselayer (based off winlayer ones + 1366x768).

git-svn-id: https://svn.eduke32.com/eduke32@1819 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
plagman 2011-03-04 07:04:42 +00:00
parent b4f5da1141
commit 012b620cae
5 changed files with 11 additions and 12 deletions

View File

@ -81,6 +81,8 @@ extern char keyasciififo[KEYFIFOSIZ], keyasciififoplc, keyasciififoend;
extern char scantoasc[128], remap[256], key_names[256][24];
extern int32_t remapinit;
extern int32_t defaultres[][2];
extern void SetKey(int32_t key, int32_t state);
// mouse

View File

@ -47,6 +47,14 @@ char scantoasc[128] =
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
};
int32_t defaultres[][2] =
{
{1920,1440},{1920,1200},{1600,1200},{1366,768},{1280,1024},{1280,960},
{1152,864},{1024,768},{1024,600},{800,600},{640,480},{640,400},
{512,384},{480,360},{400,300},{320,240},{320,200},{0,0}
};
void SetKey(int32_t key, int32_t state)
{
keystatus[remap[key]] = state;

View File

@ -6419,7 +6419,7 @@ static int32_t menuselect(void)
int32_t fillsector(int16_t sectnum, char fillcolor)
{
int32_t x1, x2, y1, y2, sy, y, tempint;
int32_t x1, x2, y1, y2, sy, y;
int32_t lborder, rborder, uborder, dborder, miny, maxy, dax;
int16_t z, zz, startwall, endwall, fillcnt;

View File

@ -794,12 +794,6 @@ void getvalidmodes(void)
#endif
0
};
static int32_t defaultres[][2] =
{
{1280,1024}
,{1280,960},{1152,864},{1024,768},{800,600},{640,480},
{640,400},{512,384},{480,360},{400,300},{320,240},{320,200},{0,0}
};
SDL_Rect **modes;
#if (SDL_MAJOR_VERSION > 1 || SDL_MINOR_VERSION > 2)
SDL_PixelFormat pf = { NULL, 8, 1, 0,0,0,0, 0,0,0,0, 0,0,0,0 };

View File

@ -1857,11 +1857,6 @@ static int32_t sortmodes(const struct validmode_t *a, const struct validmode_t *
}
void getvalidmodes(void)
{
static int32_t defaultres[][2] =
{
{1920,1440},{1920,1200},{1600,1200},{1280,1024},{1280,960},{1152,864},{1024,768},{1024,600},{800,600},{640,480},
{640,400},{512,384},{480,360},{400,300},{320,240},{320,200},{0,0}
};
int32_t cdepths[2] = { 8, 0 };
int32_t i, j, maxx=0, maxy=0;
HRESULT result;