diff options
author | Arnaud Boutonné | 2010-10-10 09:47:19 +0000 |
---|---|---|
committer | Arnaud Boutonné | 2010-10-10 09:47:19 +0000 |
commit | a4c16f7447103c3264d1d4fd1ae3f980e242e604 (patch) | |
tree | ab879d56cb738e9d86150626f1f0ea39e71147b1 /tools/create_hugo | |
parent | 178c46c0388c76bd46515aa4d37f681105dafa1e (diff) | |
download | scummvm-rg350-a4c16f7447103c3264d1d4fd1ae3f980e242e604.tar.gz scummvm-rg350-a4c16f7447103c3264d1d4fd1ae3f980e242e604.tar.bz2 scummvm-rg350-a4c16f7447103c3264d1d4fd1ae3f980e242e604.zip |
HUGO: Move Dos strings from Parser to hugo.dat
svn-id: r53109
Diffstat (limited to 'tools/create_hugo')
-rw-r--r-- | tools/create_hugo/create_hugo.h | 2 | ||||
-rw-r--r-- | tools/create_hugo/staticparser.h | 11 |
2 files changed, 10 insertions, 3 deletions
diff --git a/tools/create_hugo/create_hugo.h b/tools/create_hugo/create_hugo.h index 02f7d9fbc1..0215885c1d 100644 --- 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 24 // 1 byte +#define HUGO_DAT_VER_MIN 25 // 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 95e790f40a..9e67e98c26 100644 --- 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 18 +#define NUM_PARSER_TEXT 25 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!", @@ -52,7 +52,14 @@ const char *textParser[NUM_PARSER_TEXT] = { "I don't see any here!", "You're not close enough!", "You are carrying:", - "\nPress ESCAPE to continue" + "\nPress ESCAPE to continue", + "I see nothing special about it", + "You don't have it!", + "I don't see it anywhere", + "Are you sure you want to QUIT?", + "Apparently our hero either doesn't\nunderstand what you mean or doesn't\nthink that would be very useful!", + "I find that befuddling!", + "I don't think that would\naccomplish much, somehow!" }; #endif //STATICPARSER_H |