Don't try videoSetGameMode() if there aren't any valid modes

git-svn-id: https://svn.eduke32.com/eduke32@8207 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
terminx 2019-10-19 23:46:54 +00:00 committed by Christoph Oelckers
parent 215a7cdff3
commit b8f4651ab4

View file

@ -6644,7 +6644,7 @@ int app_main(int argc, char const * const * argv)
if (quitevent) return 4; if (quitevent) return 4;
if (g_networkMode != NET_DEDICATED_SERVER) if (g_networkMode != NET_DEDICATED_SERVER && validmodecnt > 0)
{ {
if (videoSetGameMode(ud.setup.fullscreen, ud.setup.xdim, ud.setup.ydim, ud.setup.bpp, ud.detail) < 0) if (videoSetGameMode(ud.setup.fullscreen, ud.setup.xdim, ud.setup.ydim, ud.setup.bpp, ud.detail) < 0)
{ {
@ -6670,7 +6670,7 @@ int app_main(int argc, char const * const * argv)
initprintf("Failure setting video mode %dx%dx%d windowed! Trying next mode...\n", initprintf("Failure setting video mode %dx%dx%d windowed! Trying next mode...\n",
validmode[resIdx].xdim, validmode[resIdx].ydim, bpp); validmode[resIdx].xdim, validmode[resIdx].ydim, bpp);
if (++resIdx == validmodecnt) if (++resIdx >= validmodecnt)
{ {
if (bpp == 8) if (bpp == 8)
G_GameExit("Fatal error: unable to set any video mode!"); G_GameExit("Fatal error: unable to set any video mode!");