diff options
author | Johannes Schickel | 2013-10-21 00:50:35 +0200 |
---|---|---|
committer | Johannes Schickel | 2013-10-23 22:58:57 +0200 |
commit | 38543f772c6b11cd1f5339cabac4c45f4d5e4db4 (patch) | |
tree | 596b807e53b3bc9aeb682172e6668466559f2664 /backends/platform | |
parent | 17cb26b93c5b6a00dcc9dc66d400e640fe16c097 (diff) | |
download | scummvm-rg350-38543f772c6b11cd1f5339cabac4c45f4d5e4db4.tar.gz scummvm-rg350-38543f772c6b11cd1f5339cabac4c45f4d5e4db4.tar.bz2 scummvm-rg350-38543f772c6b11cd1f5339cabac4c45f4d5e4db4.zip |
SDL: Make setupGraphicsModes non-virtual.
The logic of switching the managers is pretty much fixed at the same level
and cannot be easily overwritten.
Diffstat (limited to 'backends/platform')
-rw-r--r-- | backends/platform/sdl/sdl.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backends/platform/sdl/sdl.h b/backends/platform/sdl/sdl.h index 6389bdfbee..6c7f371f2e 100644 --- a/backends/platform/sdl/sdl.h +++ b/backends/platform/sdl/sdl.h @@ -119,7 +119,7 @@ protected: /** * Creates the merged graphics modes list */ - virtual void setupGraphicsModes(); + void setupGraphicsModes(); virtual const OSystem::GraphicsMode *getSupportedGraphicsModes() const; virtual int getDefaultGraphicsMode() const; |