fixed some broken scaler related checks
svn-id: r10595
This commit is contained in:
parent
4a84b356f8
commit
a8da69bca5
2 changed files with 3 additions and 3 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue