aboutsummaryrefslogtreecommitdiff
path: root/engines/bladerunner/bladerunner.h
diff options
context:
space:
mode:
authorPeter Kohaut2019-04-25 23:39:31 +0200
committerPeter Kohaut2019-04-25 23:39:31 +0200
commitee2dcf6375580c96a080933bcc0b07931eeb414c (patch)
treea5b82bf2b7a10b78c160b0c0b3b20ef77f0f2195 /engines/bladerunner/bladerunner.h
parent620864293d2ffebb2acb1950d065be44dae6778f (diff)
downloadscummvm-rg350-ee2dcf6375580c96a080933bcc0b07931eeb414c.tar.gz
scummvm-rg350-ee2dcf6375580c96a080933bcc0b07931eeb414c.tar.bz2
scummvm-rg350-ee2dcf6375580c96a080933bcc0b07931eeb414c.zip
BLADERUNNER: Make the cut content a runtime option
Player can choose to use or not the restored cut content. Does not affect fixed bugs in original game.
Diffstat (limited to 'engines/bladerunner/bladerunner.h')
-rw-r--r--engines/bladerunner/bladerunner.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/engines/bladerunner/bladerunner.h b/engines/bladerunner/bladerunner.h
index 39e166d7c0..267001a4fd 100644
--- a/engines/bladerunner/bladerunner.h
+++ b/engines/bladerunner/bladerunner.h
@@ -39,8 +39,6 @@
#define BLADERUNNER_DEBUG_CONSOLE 0
#define BLADERUNNER_ORIGINAL_SETTINGS 0
#define BLADERUNNER_ORIGINAL_BUGS 0
-#define BLADERUNNER_RESTORED_CUT_CONTENT 1
-
namespace Common {
struct Event;
@@ -113,9 +111,10 @@ public:
static const int kActorCount = 100;
static const int kActorVoiceOver = kActorCount - 1;
- bool _gameIsRunning;
- bool _windowIsActive;
- int _playerLosesControlCounter;
+ bool _gameIsRunning;
+ bool _windowIsActive;
+ int _playerLosesControlCounter;
+
Common::String _languageCode;
Common::Language _language;
@@ -203,6 +202,7 @@ public:
bool _subtitlesEnabled; // tracks the state of whether subtitles are enabled or disabled from ScummVM GUI option or KIA checkbox (the states are synched)
bool _sitcomMode;
bool _shortyMode;
+ bool _cutContent;
int _walkSoundId;
int _walkSoundVolume;