diff options
author | Strangerke | 2015-11-03 23:12:44 +0100 |
---|---|---|
committer | Strangerke | 2015-11-03 23:12:44 +0100 |
commit | cdc564b06049d064aeb15ad632fc4822a5d814d8 (patch) | |
tree | 5028866c2c036edeba5ad4c50604cac58b19da6b /engines/mads | |
parent | 9d6bb85ce3e42e30f1d539a5f2c7a8d7de3b15a1 (diff) | |
download | scummvm-rg350-cdc564b06049d064aeb15ad632fc4822a5d814d8.tar.gz scummvm-rg350-cdc564b06049d064aeb15ad632fc4822a5d814d8.tar.bz2 scummvm-rg350-cdc564b06049d064aeb15ad632fc4822a5d814d8.zip |
MADS: Phantom: Phantom isn't naughty!
Diffstat (limited to 'engines/mads')
-rw-r--r-- | engines/mads/phantom/game_phantom.cpp | 1 | ||||
-rw-r--r-- | engines/mads/phantom/game_phantom.h | 4 |
2 files changed, 0 insertions, 5 deletions
diff --git a/engines/mads/phantom/game_phantom.cpp b/engines/mads/phantom/game_phantom.cpp index aa57811930..ca2d68713b 100644 --- a/engines/mads/phantom/game_phantom.cpp +++ b/engines/mads/phantom/game_phantom.cpp @@ -137,7 +137,6 @@ namespace Phantom { GamePhantom::GamePhantom(MADSEngine *vm) : Game(vm) { _surface = new MSurface(MADS_SCREEN_WIDTH, MADS_SCENE_HEIGHT); - _storyMode = STORYMODE_NAUGHTY; _difficulty = DIFFICULTY_HARD; } diff --git a/engines/mads/phantom/game_phantom.h b/engines/mads/phantom/game_phantom.h index 921d7a23be..a7a91b37ad 100644 --- a/engines/mads/phantom/game_phantom.h +++ b/engines/mads/phantom/game_phantom.h @@ -32,9 +32,6 @@ namespace MADS { namespace Phantom { -// TODO: Adapt for Phantom's difficulty setting -enum StoryMode { STORYMODE_NAUGHTY = 1, STORYMODE_NICE = 2 }; - enum Difficulty { DIFFICULTY_HARD = 1, DIFFICULTY_MEDIUM = 2, DIFFICULTY_EASY = 3 }; @@ -110,7 +107,6 @@ protected: virtual void checkShowDialog(); public: PhantomGlobals _globals; - StoryMode _storyMode; Difficulty _difficulty; |