aboutsummaryrefslogtreecommitdiff
path: root/engines/wintermute/platform_osystem.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/wintermute/platform_osystem.h')
-rw-r--r--engines/wintermute/platform_osystem.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/engines/wintermute/platform_osystem.h b/engines/wintermute/platform_osystem.h
index 50b07bccb8..601f47b29d 100644
--- a/engines/wintermute/platform_osystem.h
+++ b/engines/wintermute/platform_osystem.h
@@ -36,12 +36,12 @@
namespace WinterMute {
-class CBGame;
+class BaseGame;
//////////////////////////////////////////////////////////////////////////
-class CBPlatform {
+class BasePlatform {
public:
- static int initialize(CBGame *inGame, int argc, char *argv[]);
+ static int initialize(BaseGame *inGame, int argc, char *argv[]);
static void handleEvent(Common::Event *event);
static AnsiString getSystemFontPath();
@@ -80,7 +80,7 @@ public:
static int SDLEventWatcher(void *userdata, Common::Event *event);
private:
- static CBGame *_gameRef;
+ static BaseGame *_gameRef;
};
} // end of namespace WinterMute