Changed: Make sure char select window resolution is at least 1024x768
--HG-- branch : develop
This commit is contained in:
parent
ace1684f5c
commit
94861ac709
1 changed files with 3 additions and 3 deletions
|
@ -201,9 +201,9 @@ void connectionRestoreVideoMode ()
|
||||||
mode.Height = height;
|
mode.Height = height;
|
||||||
}
|
}
|
||||||
|
|
||||||
// don't allow sizes smaller than 800x600
|
// don't allow sizes smaller than 1024x768
|
||||||
if (ClientCfg.Width < 800) ClientCfg.Width = 800;
|
if (ClientCfg.Width < 1024) ClientCfg.Width = 1024;
|
||||||
if (ClientCfg.Height < 600) ClientCfg.Height = 600;
|
if (ClientCfg.Height < 768) ClientCfg.Height = 768;
|
||||||
|
|
||||||
if (StereoDisplay)
|
if (StereoDisplay)
|
||||||
StereoDisplayAttached = StereoDisplay->attachToDisplay();
|
StereoDisplayAttached = StereoDisplay->attachToDisplay();
|
||||||
|
|
Loading…
Reference in a new issue