make min. resolution 320x200 (Hendricks266's request)

git-svn-id: https://svn.eduke32.com/eduke32@1923 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
helixhorned 2011-06-27 10:55:08 +00:00
parent 87f726bfd7
commit 1eec50be5f
1 changed files with 2 additions and 2 deletions

View File

@ -9740,8 +9740,8 @@ int32_t setgamemode(char davidoption, int32_t daxdim, int32_t daydim, int32_t da
{
int32_t i, j;
daxdim = max(640, daxdim);
daydim = max(480, daydim);
daxdim = max(320, daxdim);
daydim = max(200, daydim);
#ifdef USE_OPENGL
extern char nogl;