fixed some broken scaler related checks

svn-id: r10595
This commit is contained in:
Max Horn 2003-10-05 00:28:23 +00:00
parent 4a84b356f8
commit a8da69bca5
2 changed files with 3 additions and 3 deletions

View file

@ -387,7 +387,7 @@ uint32 OSystem_SDL::property(int param, Property *value) {
#endif
return 1;
} else if (param == PROP_SET_GFX_MODE) {
if (value->gfx_mode >= 11)
if (value->gfx_mode > 11) // FIXME! HACK, hard coded threshold, not good
return 0;
_mode = value->gfx_mode;