diff options
author | Paul Gilbert | 2018-03-28 19:17:29 -0400 |
---|---|---|
committer | Paul Gilbert | 2018-03-28 20:49:44 -0400 |
commit | fc8915bce04d9ce2251aafa2089dcfe3d2ad7b81 (patch) | |
tree | bd822302a4d2ce6f35f3c814bbd389ead33b127c /devtools/create_xeen | |
parent | 8c86a18806d4afc5a28cbfa1eb9b499a5a9d0ff1 (diff) | |
download | scummvm-rg350-fc8915bce04d9ce2251aafa2089dcfe3d2ad7b81.tar.gz scummvm-rg350-fc8915bce04d9ce2251aafa2089dcfe3d2ad7b81.tar.bz2 scummvm-rg350-fc8915bce04d9ce2251aafa2089dcfe3d2ad7b81.zip |
XEEN: String fixes in create_xeen
Diffstat (limited to 'devtools/create_xeen')
-rw-r--r-- | devtools/create_xeen/constants.cpp | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/devtools/create_xeen/constants.cpp b/devtools/create_xeen/constants.cpp index 6f2b974755..d888886aee 100644 --- a/devtools/create_xeen/constants.cpp +++ b/devtools/create_xeen/constants.cpp @@ -1131,7 +1131,7 @@ const char *const FIRE_RESISTENCE_TEXT = "%c%sFire%s%u"; const char *const ELECRICITY_RESISTENCE_TEXT = "%c%sElectricity%s%u"; -const char *const COLD_RESISTENCE_TEXT = "c%sCold%s%u"; +const char *const COLD_RESISTENCE_TEXT = "%c%sCold%s%u"; const char *const POISON_RESISTENCE_TEXT = "%c%sPoison/Acid%s%u"; @@ -1223,7 +1223,7 @@ const char *const RESISTENCES_TEXT = "\t020Energy\t100%u\n" "\t020Magic\t100%u"; -const char *const NONE = "\n\t020"; +const char *const NONE = "\n\t020None"; const char *const EXPERIENCE_TEXT = "\x2\x3""c%s\x3l\n" "\t010Current:\t070%lu\n" @@ -1310,9 +1310,8 @@ const char *const ACCESSORY_NAMES[11] = { const char *const MISC_NAMES[22] = { nullptr, "rod ", "jewel ", "gem ", "box ", "orb ", "horn ", "coin ", - "wand ", "whistle ", "potion ", "scroll ", "RogueVM", - "bogusg", "bogus", "bogus", "bogus", "bogus", - "bogus", "bogus", "bogus", "bogus" + "wand ", "whistle ", "potion ", "scroll ", "bogus", "bogus", "bogus", + "bogus", "bogus", "bogus", "bogus", "bogus", "bogus", "bogus" }; const char *const ELEMENTAL_NAMES[6] = { |