aboutsummaryrefslogtreecommitdiff
path: root/engines/wintermute/platform_osystem.h
diff options
context:
space:
mode:
authorEinar Johan Trøan Sømåen2012-07-21 21:01:47 +0200
committerEinar Johan Trøan Sømåen2012-07-21 21:01:47 +0200
commitb5a07fef8ebf29f7f44b15d9b34799c7e115fdad (patch)
tree76599c7b51aa6ad0447cb6ff6847f9eba54a679a /engines/wintermute/platform_osystem.h
parent2e82471240804df65acdf51c43ea044cbb81ae68 (diff)
downloadscummvm-rg350-b5a07fef8ebf29f7f44b15d9b34799c7e115fdad.tar.gz
scummvm-rg350-b5a07fef8ebf29f7f44b15d9b34799c7e115fdad.tar.bz2
scummvm-rg350-b5a07fef8ebf29f7f44b15d9b34799c7e115fdad.zip
WINTERMUTE: Get rid of the C-prefix for class-definitions.
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