aboutsummaryrefslogtreecommitdiff
path: root/engines/wintermute/ad
diff options
context:
space:
mode:
authorEinar Johan Trøan Sømåen2012-07-27 19:35:20 +0200
committerEinar Johan Trøan Sømåen2012-07-27 19:35:20 +0200
commitc7fa8e7d1024e4447a7396b5099870d01b775746 (patch)
tree9fa68cf963e7be42015d5a15ef6fec2c716f8a5c /engines/wintermute/ad
parent99d4c55e88712a0b0dc0d97e4c9c52946a5f48f2 (diff)
downloadscummvm-rg350-c7fa8e7d1024e4447a7396b5099870d01b775746.tar.gz
scummvm-rg350-c7fa8e7d1024e4447a7396b5099870d01b775746.tar.bz2
scummvm-rg350-c7fa8e7d1024e4447a7396b5099870d01b775746.zip
WINTERMUTE: Move settings-files to save-dir (gzipped xml now)
Diffstat (limited to 'engines/wintermute/ad')
-rw-r--r--engines/wintermute/ad/ad_game.cpp2
-rw-r--r--engines/wintermute/ad/ad_game.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/engines/wintermute/ad/ad_game.cpp b/engines/wintermute/ad/ad_game.cpp
index 66ec582f21..b922123e38 100644
--- a/engines/wintermute/ad/ad_game.cpp
+++ b/engines/wintermute/ad/ad_game.cpp
@@ -66,7 +66,7 @@ namespace WinterMute {
IMPLEMENT_PERSISTENT(AdGame, true)
//////////////////////////////////////////////////////////////////////////
-AdGame::AdGame(): BaseGame() {
+AdGame::AdGame(const Common::String &gameId): BaseGame(gameId) {
_responseBox = NULL;
_inventoryBox = NULL;
diff --git a/engines/wintermute/ad/ad_game.h b/engines/wintermute/ad/ad_game.h
index ef671b0a64..7f76b959d4 100644
--- a/engines/wintermute/ad/ad_game.h
+++ b/engines/wintermute/ad/ad_game.h
@@ -118,7 +118,7 @@ public:
bool addObject(AdObject *object);
AdScene *_scene;
bool initLoop();
- AdGame();
+ AdGame(const Common::String &gameId);
virtual ~AdGame();
BaseArray<AdObject *> _objects;