aboutsummaryrefslogtreecommitdiff
path: root/engines/saga/saga.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/saga/saga.h')
-rw-r--r--engines/saga/saga.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/engines/saga/saga.h b/engines/saga/saga.h
index a667a09d30..2bef489e05 100644
--- a/engines/saga/saga.h
+++ b/engines/saga/saga.h
@@ -150,9 +150,8 @@ enum GameFeatures {
#endif
GF_MONO_MUSIC = 1 << 4,
GF_EXTRA_ITE_CREDITS = 1 << 5,
- GF_IHNM_DEMO = 1 << 6,
- GF_LE_VOICES = 1 << 7,
- GF_8BIT_UNSIGNED_PCM = 1 << 8
+ GF_LE_VOICES = 1 << 6,
+ GF_8BIT_UNSIGNED_PCM = 1 << 7
};
enum VerbTypeIds {
@@ -502,6 +501,8 @@ public:
return isSaveListFull() ? _saveFilesCount : _saveFilesCount + 1;
}
+ bool isIHNMDemo() { return _isIHNMDemo; }
+
int16 _framesEsc;
uint32 _globalFlags;
@@ -519,6 +520,7 @@ public:
bool _copyProtection;
bool _gf_wyrmkeep;
bool _musicWasPlaying;
+ bool _isIHNMDemo;
SndRes *_sndRes;
Sound *_sound;