diff options
author | Colin Snover | 2017-10-15 16:54:24 -0500 |
---|---|---|
committer | Colin Snover | 2017-10-15 16:54:24 -0500 |
commit | ef44cc55eec31693fc7c12937383ffc7672027fd (patch) | |
tree | b5a7872e7ff288aff45408dad085e69093616423 | |
parent | 7aef79c421011751311334cd5915d31bdadda3da (diff) | |
download | scummvm-rg350-ef44cc55eec31693fc7c12937383ffc7672027fd.tar.gz scummvm-rg350-ef44cc55eec31693fc7c12937383ffc7672027fd.tar.bz2 scummvm-rg350-ef44cc55eec31693fc7c12937383ffc7672027fd.zip |
DINGUX: Really constify getFeatureState
-rw-r--r-- | backends/graphics/dinguxsdl/dinguxsdl-graphics.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backends/graphics/dinguxsdl/dinguxsdl-graphics.h b/backends/graphics/dinguxsdl/dinguxsdl-graphics.h index 89ee1411f1..3a2a299a2f 100644 --- a/backends/graphics/dinguxsdl/dinguxsdl-graphics.h +++ b/backends/graphics/dinguxsdl/dinguxsdl-graphics.h @@ -38,7 +38,7 @@ public: bool hasFeature(OSystem::Feature f) const override; void setFeatureState(OSystem::Feature f, bool enable) override; - bool getFeatureState(OSystem::Feature f) override; + bool getFeatureState(OSystem::Feature f) const override; int getDefaultGraphicsMode() const override; void initSize(uint w, uint h) override; |