mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-11 07:11:39 +00:00
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:
parent
87f726bfd7
commit
1eec50be5f
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue