mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-17 04:51:52 +00:00
Fixed: #966 Don't exit if no corresponding screen mode found in windowed
This commit is contained in:
parent
5af2dbea2a
commit
6672da9201
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