aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--backends/sdl/sdl.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/backends/sdl/sdl.cpp b/backends/sdl/sdl.cpp
index cc22921f5c..fc8d5781c5 100644
--- a/backends/sdl/sdl.cpp
+++ b/backends/sdl/sdl.cpp
@@ -396,6 +396,10 @@ uint32 OSystem_SDL::property(int param, Property *value) {
_adjustAspectRatio ^= true;
hotswap_gfx_mode();
}
+ } else if (param == PROP_HAS_SCALER) {
+ if (value->gfx_mode <= 11) // FIXME: Hardcoded
+ return 1;
+ return 0;
}
return OSystem_SDL_Common::property(param, value);