aboutsummaryrefslogtreecommitdiff
path: root/engines/mortevielle/mortevielle.h
diff options
context:
space:
mode:
authorStrangerke2013-08-13 08:34:36 +0200
committerStrangerke2013-08-13 08:34:36 +0200
commit0d1772b95d35a88f18977aeda5149c98cf619a0c (patch)
tree71a947a2d98bd6b3630ebdc26ac8415f8029e5ae /engines/mortevielle/mortevielle.h
parentef3c4689b3bfb558bb257da9c1c3c9d6b5dcb3ad (diff)
downloadscummvm-rg350-0d1772b95d35a88f18977aeda5149c98cf619a0c.tar.gz
scummvm-rg350-0d1772b95d35a88f18977aeda5149c98cf619a0c.tar.bz2
scummvm-rg350-0d1772b95d35a88f18977aeda5149c98cf619a0c.zip
MORTEVIELLE: Introduce original language in detection
Diffstat (limited to 'engines/mortevielle/mortevielle.h')
-rw-r--r--engines/mortevielle/mortevielle.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/engines/mortevielle/mortevielle.h b/engines/mortevielle/mortevielle.h
index 699ee3f37a..820046b17c 100644
--- a/engines/mortevielle/mortevielle.h
+++ b/engines/mortevielle/mortevielle.h
@@ -169,9 +169,11 @@ struct Hint {
byte _point;
};
+struct MortevielleGameDescription;
+
class MortevielleEngine : public Engine {
private:
- const ADGameDescription *_gameDescription;
+ const MortevielleGameDescription *_gameDescription;
Common::Stack<int> _keypresses;
uint32 _lastGameFrame;
Common::Point _mousePos;
@@ -449,7 +451,7 @@ public:
TextHandler _text;
DialogManager _dialogManager;
- MortevielleEngine(OSystem *system, const ADGameDescription *gameDesc);
+ MortevielleEngine(OSystem *system, const MortevielleGameDescription *gameDesc);
~MortevielleEngine();
virtual bool hasFeature(EngineFeature f) const;
virtual bool canLoadGameStateCurrently();