diff options
author | D G Turner | 2019-11-23 15:36:37 +0000 |
---|---|---|
committer | D G Turner | 2019-11-23 15:36:37 +0000 |
commit | 77d13f7bce83b0b22e6e1517f3f4b73cf82742c3 (patch) | |
tree | 4daddf28df9e524655fbd1951ac3812d29ebd9bf /backends/graphics/linuxmotosdl | |
parent | d4cc24854d90bf0e469024c5f37d380e2242b924 (diff) | |
download | scummvm-rg350-77d13f7bce83b0b22e6e1517f3f4b73cf82742c3.tar.gz scummvm-rg350-77d13f7bce83b0b22e6e1517f3f4b73cf82742c3.tar.bz2 scummvm-rg350-77d13f7bce83b0b22e6e1517f3f4b73cf82742c3.zip |
LINUXMOTO: Fix Missing Declaration in Graphics Class
Diffstat (limited to 'backends/graphics/linuxmotosdl')
-rw-r--r-- | backends/graphics/linuxmotosdl/linuxmotosdl-graphics.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/backends/graphics/linuxmotosdl/linuxmotosdl-graphics.h b/backends/graphics/linuxmotosdl/linuxmotosdl-graphics.h index ed10ba9d73..4e886b4e1e 100644 --- a/backends/graphics/linuxmotosdl/linuxmotosdl-graphics.h +++ b/backends/graphics/linuxmotosdl/linuxmotosdl-graphics.h @@ -30,6 +30,7 @@ public: LinuxmotoSdlGraphicsManager(SdlEventSource *sdlEventSource, SdlWindow *window); virtual void initSize(uint w, uint h, const Graphics::PixelFormat *format = NULL) override; + const OSystem::GraphicsMode *getSupportedGraphicsModes() const override; virtual void setGraphicsModeIntern() override; virtual int getGraphicsModeScale(int mode) const override; virtual void internUpdateScreen() override; |