diff options
author | Joseph-Eugene Winzer | 2018-03-20 12:52:21 +0100 |
---|---|---|
committer | Eugene Sandulenko | 2018-03-28 17:36:57 +0200 |
commit | 40dc39d01d7143d6622456fa0e6efb4a68385c5e (patch) | |
tree | 1d08a596e450050eea282a055d18d65d44d9d44a | |
parent | 7abc364a4ae635ac90420942cb8bb191e657379b (diff) | |
download | scummvm-rg350-40dc39d01d7143d6622456fa0e6efb4a68385c5e.tar.gz scummvm-rg350-40dc39d01d7143d6622456fa0e6efb4a68385c5e.tar.bz2 scummvm-rg350-40dc39d01d7143d6622456fa0e6efb4a68385c5e.zip |
LILLIPUT: Reformats string
-rw-r--r-- | engines/lilliput/script.cpp | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/engines/lilliput/script.cpp b/engines/lilliput/script.cpp index 7197571480..a5df4a6af4 100644 --- a/engines/lilliput/script.cpp +++ b/engines/lilliput/script.cpp @@ -1149,7 +1149,13 @@ void LilliputScript::decodePackedText(char *buf) { debugC(2, kDebugScript, "decodePackedText(buf)"); // All the languages use the English dictionary - static const char *nounsArrayPtr = "I am |You are |you are |hou art |in the |is the |is a |in a |To the |to the |by |going |here |The|the|and |some |build|not |way|I |a |an |from |of |him|her|by |his |ing |tion|have |you|I've |can't |up |to |he |she |down |what|What|with|are |and|ent|ian|ome|ed |me|my|ai|it|is|of|oo|ea|er|es|th|we|ou|ow|or|gh|go|er|st|ee|th|sh|ch|ct|on|ly|ng|nd|nt|ty|ll|le|de|as|ie|in|ss|'s |'t |re|gg|tt|pp|nn|ay|ar|wh|"; + static const char *nounsArrayPtr = "I am |You are |you are |hou art |in the |" + "is the |is a |in a |To the |to the |by |going |here |The|the|and |" + "some |build|not |way|I |a |an |from |of |him|her|by |his |ing |tion|" + "have |you|I've |can't |up |to |he |she |down |what|What|with|are |" + "and|ent|ian|ome|ed |me|my|ai|it|is|of|oo|ea|er|es|th|we|ou|ow|or|" + "gh|go|er|st|ee|th|sh|ch|ct|on|ly|ng|nd|nt|ty|ll|le|de|as|ie|in|ss|" + "'s |'t |re|gg|tt|pp|nn|ay|ar|wh|"; _vm->_displayStringIndex = 0; _byte1881A = 0; |