aboutsummaryrefslogtreecommitdiff
path: root/engines/tucker/tucker.h
diff options
context:
space:
mode:
authorGregory Montoir2009-01-24 21:03:44 +0000
committerGregory Montoir2009-01-24 21:03:44 +0000
commite5feb689dfa8afc3d6af3ae6e66343cfc61b855c (patch)
tree71a2936bd7ca5526c0652bd4522771ae38e51039 /engines/tucker/tucker.h
parent454610ff5ac5d7cc4760e63ff2d96c09208148b0 (diff)
downloadscummvm-rg350-e5feb689dfa8afc3d6af3ae6e66343cfc61b855c.tar.gz
scummvm-rg350-e5feb689dfa8afc3d6af3ae6e66343cfc61b855c.tar.bz2
scummvm-rg350-e5feb689dfa8afc3d6af3ae6e66343cfc61b855c.zip
added detection entry for playable demo and some code differences
svn-id: r36044
Diffstat (limited to 'engines/tucker/tucker.h')
-rw-r--r--engines/tucker/tucker.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/engines/tucker/tucker.h b/engines/tucker/tucker.h
index 0050961827..c9decaa13a 100644
--- a/engines/tucker/tucker.h
+++ b/engines/tucker/tucker.h
@@ -175,7 +175,8 @@ enum {
kScreenHeight = 200,
kScreenPitch = 640,
kFadePaletteStep = 5,
- kStartupLocation = 1,
+ kStartupLocationDemo = 9,
+ kStartupLocationGame = 1,
kDefaultCharSpeechSoundCounter = 1,
kMaxSoundVolume = 127,
kLastSaveSlot = 99
@@ -205,7 +206,8 @@ enum InputKey {
enum GameFlag {
kGameFlagDemo = 1 << 0,
kGameFlagEncodedData = 1 << 1,
- kGameFlagNoSubtitles = 1 << 2
+ kGameFlagNoSubtitles = 1 << 2,
+ kGameFlagIntroOnly = 1 << 3
};
inline int scaleMixerVolume(int volume, int max = 100) {