diff options
Diffstat (limited to 'tools/create_hugo/staticutil.h')
-rw-r--r-- | tools/create_hugo/staticutil.h | 19 |
1 files changed, 7 insertions, 12 deletions
diff --git a/tools/create_hugo/staticutil.h b/tools/create_hugo/staticutil.h index 090b07de93..050655a4de 100644 --- a/tools/create_hugo/staticutil.h +++ b/tools/create_hugo/staticutil.h @@ -33,19 +33,14 @@ #ifndef STATICUTIL_H #define STATICUTIL_H -#define NUM_UTIL_TEXT 8 - -const char *textUtil[NUM_UTIL_TEXT] = { - "\n\nPlease read the supplied 'technote' file which may contain information on this problem.", - "File not found: ", - "Unable to write file.\nDisk full or perhaps read-only?\n", - "Bad data file format:\n", - "Insufficient memory to run game.\n", - "Sound missing from sound file:\n", - "An error has occurred.\n", +#define NUM_UTIL_TEXT 1 + +const char *textUtil_v1w[NUM_UTIL_TEXT] = { "I'm afraid all you can do at this point is:\n\n- Load a saved game (Ctrl+L)\n- Start a new game (Ctrl+N)\n- Quit! (Alt+F4)" -// "No timers available, try again later.\n", -// "Unable to find or load VBX file:\n" +}; + +const char *textUtil_v1d[NUM_UTIL_TEXT] = { + "I'm afraid all you can do\nat this point is restore\na saved game or quit!" }; #endif //STATICENGINE_H |