mirror of
https://github.com/ZDoom/Raze.git
synced 2025-01-18 14:41:55 +00:00
Address a typo in r6435 affecting SDL 1.2 builds.
git-svn-id: https://svn.eduke32.com/eduke32@6449 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
36eb156d7d
commit
5f79c71aa0
1 changed files with 1 additions and 1 deletions
|
@ -267,7 +267,7 @@ void getvalidmodes(void)
|
|||
{
|
||||
for (i = 0; modes[i]; i++)
|
||||
{
|
||||
if (!SDL_CHECKMODE(modes[i]->w, modes[i]->h > MAXYDIM))
|
||||
if (!SDL_CHECKMODE(modes[i]->w, modes[i]->h))
|
||||
continue;
|
||||
|
||||
SDL_ADDMODE(modes[i]->w, modes[i]->h, cdepths[j], 1);
|
||||
|
|
Loading…
Reference in a new issue