diff options
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 |