diff options
author | Travis Howell | 2008-06-01 10:37:14 +0000 |
---|---|---|
committer | Travis Howell | 2008-06-01 10:37:14 +0000 |
commit | 3b5b37c3e1d79e4482d6dc5f45dc497ead10fcd6 (patch) | |
tree | 16fe512f7230c84d546bfb1177086a3e15d5cae9 /engines/scumm | |
parent | 0b46595bf1809ab406ca604f8821e987b7edbacb (diff) | |
download | scummvm-rg350-3b5b37c3e1d79e4482d6dc5f45dc497ead10fcd6.tar.gz scummvm-rg350-3b5b37c3e1d79e4482d6dc5f45dc497ead10fcd6.tar.bz2 scummvm-rg350-3b5b37c3e1d79e4482d6dc5f45dc497ead10fcd6.zip |
Fix bug #1973247 - DIG: Subtitle glitch (Regression).
svn-id: r32456
Diffstat (limited to 'engines/scumm')
-rw-r--r-- | engines/scumm/string.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/scumm/string.cpp b/engines/scumm/string.cpp index 81ffaa89ba..f039e2ca23 100644 --- a/engines/scumm/string.cpp +++ b/engines/scumm/string.cpp @@ -1481,9 +1481,9 @@ void ScummEngine_v7::translateText(const byte *text, byte *trans_buff) { text = (const byte *)"/NEW.009/glowing crystals"; else if (!strcmp((const char *)text, "pit")) text = (const byte *)"/NEW.010/pit"; - else if (!strcmp((const char *)text, "/NEWTON.032/")) + else if (!strcmp((const char *)text, "You wish.")) text = (const byte *)"/NEW.011/You wish."; - else if (!strcmp((const char *)text, "/NEWTON.034/")) + else if (!strcmp((const char *)text, "In your dreams.")) text = (const byte *)"/NEW.012/In your dreams"; else if (!strcmp((const char *)text, "left")) text = (const byte *)"/CATHPLAT.068/left"; |