aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohannes Schickel2013-10-21 00:50:35 +0200
committerKamil Zbróg2013-10-24 12:59:16 +0100
commitc5f1ee5b281e6e9c2291ff03bc9e71429a8e153b (patch)
treef6f5d99c4d851b5e12c392c072a041fa5b434179
parent3523ec449ea8ccbe63d97b806c8ba9314808d080 (diff)
downloadscummvm-rg350-c5f1ee5b281e6e9c2291ff03bc9e71429a8e153b.tar.gz
scummvm-rg350-c5f1ee5b281e6e9c2291ff03bc9e71429a8e153b.tar.bz2
scummvm-rg350-c5f1ee5b281e6e9c2291ff03bc9e71429a8e153b.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.
-rw-r--r--backends/platform/sdl/sdl.h2
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;