aboutsummaryrefslogtreecommitdiff
path: root/engines/hugo/hugo.h
diff options
context:
space:
mode:
authorArnaud Boutonné2010-09-17 22:40:53 +0000
committerArnaud Boutonné2010-09-17 22:40:53 +0000
commit1e9e8cd64a97ade7d8f9ff891e511d47b98da70d (patch)
tree6c6ab680cfd943bb6915536a64bfe3eae09d09cb /engines/hugo/hugo.h
parent99cc8051816fca07a185d1b2612271ff04098d65 (diff)
downloadscummvm-rg350-1e9e8cd64a97ade7d8f9ff891e511d47b98da70d.tar.gz
scummvm-rg350-1e9e8cd64a97ade7d8f9ff891e511d47b98da70d.tar.bz2
scummvm-rg350-1e9e8cd64a97ade7d8f9ff891e511d47b98da70d.zip
HUGO: Fix crash in the first screen of H1 Dos
- Fix crash in the first screen of H1 Dos - Clean up svn-id: r52787
Diffstat (limited to 'engines/hugo/hugo.h')
-rw-r--r--engines/hugo/hugo.h11
1 files changed, 10 insertions, 1 deletions
diff --git a/engines/hugo/hugo.h b/engines/hugo/hugo.h
index e59c4dfdf5..3dea391d4b 100644
--- a/engines/hugo/hugo.h
+++ b/engines/hugo/hugo.h
@@ -33,7 +33,7 @@
#include "hugo/game.h"
#define HUGO_DAT_VER_MAJ 0 // 1 byte
-#define HUGO_DAT_VER_MIN 22 // 1 byte
+#define HUGO_DAT_VER_MIN 23 // 1 byte
#define DATAALIGNMENT 4
namespace Common {
@@ -48,6 +48,15 @@ enum GameType {
kGameTypeHugo3
};
+enum GameVariant {
+ kGameVariantH1Win = 0,
+ kGameVariantH2Win,
+ kGameVariantH3Win,
+ kGameVariantH1Dos,
+ kGameVariantH2Dos,
+ kGameVariantH3Dos
+};
+
enum HugoDebugChannels {
kDebugSchedule = 1 << 0,
kDebugEngine = 1 << 1,