diff options
author | Arnaud Boutonné | 2010-08-20 15:30:30 +0000 |
---|---|---|
committer | Arnaud Boutonné | 2010-08-20 15:30:30 +0000 |
commit | 0b4fef3aa745a873deb99ca9ff95e33d12770f2c (patch) | |
tree | e95486b78ac19692b1624fe74e6fa603e743a0b3 /tools/create_hugo | |
parent | dd1708a1f12d1911a785cafdf7344d72065a1086 (diff) | |
download | scummvm-rg350-0b4fef3aa745a873deb99ca9ff95e33d12770f2c.tar.gz scummvm-rg350-0b4fef3aa745a873deb99ca9ff95e33d12770f2c.tar.bz2 scummvm-rg350-0b4fef3aa745a873deb99ca9ff95e33d12770f2c.zip |
Hugo - Move DOS hardcoded inventory strings to Hugo.dat
svn-id: r52226
Diffstat (limited to 'tools/create_hugo')
-rwxr-xr-x | tools/create_hugo/create_hugo.h | 2 | ||||
-rwxr-xr-x | tools/create_hugo/staticparser.h | 6 |
2 files changed, 5 insertions, 3 deletions
diff --git a/tools/create_hugo/create_hugo.h b/tools/create_hugo/create_hugo.h index fce42cef87..44965ab9d6 100755 --- a/tools/create_hugo/create_hugo.h +++ b/tools/create_hugo/create_hugo.h @@ -31,7 +31,7 @@ #define DATAALIGNMENT 4 #define HUGO_DAT_VER_MAJ 0 // 1 byte -#define HUGO_DAT_VER_MIN 16 // 1 byte +#define HUGO_DAT_VER_MIN 17 // 1 byte typedef unsigned char uint8; typedef unsigned char byte; diff --git a/tools/create_hugo/staticparser.h b/tools/create_hugo/staticparser.h index e11e7a461c..95e790f40a 100755 --- a/tools/create_hugo/staticparser.h +++ b/tools/create_hugo/staticparser.h @@ -33,7 +33,7 @@ #ifndef STATICPARSER_H #define STATICPARSER_H -#define NUM_PARSER_TEXT 16 +#define NUM_PARSER_TEXT 18 const char *textParser[NUM_PARSER_TEXT] = { "You should press ALT+F4 or click on Game/Exit.", "You are in a maze of\ntwisty little paths,\nwhich are all alike!", @@ -50,7 +50,9 @@ const char *textParser[NUM_PARSER_TEXT] = { "You don't have any!", "There aren't any!", "I don't see any here!", - "You're not close enough!" + "You're not close enough!", + "You are carrying:", + "\nPress ESCAPE to continue" }; #endif //STATICPARSER_H |