aboutsummaryrefslogtreecommitdiff
path: root/backends/sdl/sdl-common.h
diff options
context:
space:
mode:
authorMax Horn2004-03-28 20:31:18 +0000
committerMax Horn2004-03-28 20:31:18 +0000
commit39765b0d19fd8409cf4e0e96c9edc2ad5b25f247 (patch)
tree3f1aef98ad8882a2d1147cc4c7a4a838b60f22ac /backends/sdl/sdl-common.h
parent09e3fec623c1ecea73a23d12891790569d1baa40 (diff)
downloadscummvm-rg350-39765b0d19fd8409cf4e0e96c9edc2ad5b25f247.tar.gz
scummvm-rg350-39765b0d19fd8409cf4e0e96c9edc2ad5b25f247.tar.bz2
scummvm-rg350-39765b0d19fd8409cf4e0e96c9edc2ad5b25f247.zip
Remove explicit OSystem parameter from StackLock constructor; added OSystem::displayMessageOnOSD (not yet used; default implementation provided)
svn-id: r13413
Diffstat (limited to 'backends/sdl/sdl-common.h')
-rw-r--r--backends/sdl/sdl-common.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/backends/sdl/sdl-common.h b/backends/sdl/sdl-common.h
index 89a5b750fe..127267f878 100644
--- a/backends/sdl/sdl-common.h
+++ b/backends/sdl/sdl-common.h
@@ -137,6 +137,10 @@ public:
virtual void setFeatureState(Feature f, bool enable);
virtual bool getFeatureState(Feature f);
+#ifdef USE_OSD
+ void displayMessageOnOSD(const char *msg);
+#endif
+
protected:
void init_intern();
@@ -150,8 +154,6 @@ protected:
kOSDColorKey = 1,
kOSDInitialAlpha = 80 // Initial alpha level, in percent
};
-
- void displayMessageOnOSD(const char *msg);
#endif
// hardware screen
@@ -252,7 +254,7 @@ protected:
void toggleMouseGrab();
- void internUpdateScreen();
+ virtual void internUpdateScreen();
void load_gfx_mode();
void unload_gfx_mode();