mirror of
https://port.numenaute.org/aleajactaest/khanat-code-old.git
synced 2024-11-10 09:19:01 +00:00
Fixed: #966 Don't exit if no corresponding screen mode found in windowed
This commit is contained in:
parent
1466684fc7
commit
813352362d
1 changed files with 1 additions and 1 deletions
|
@ -2785,7 +2785,7 @@ public:
|
|||
}
|
||||
|
||||
// If no modes are available, display a message and exit
|
||||
if (nFoundMode == -1)
|
||||
if (!ClientCfg.Windowed && nFoundMode == -1)
|
||||
{
|
||||
Driver->systemMessageBox("No Video Modes available!\n"
|
||||
"Minimum Video mode to play Ryzom is 800x600.\n",
|
||||
|
|
Loading…
Reference in a new issue