aboutsummaryrefslogtreecommitdiff
path: root/scumm/script_v8.cpp
diff options
context:
space:
mode:
authorMax Horn2004-04-02 20:35:04 +0000
committerMax Horn2004-04-02 20:35:04 +0000
commitd25da64937ad7bef5353530a63b7b917c7b86ab9 (patch)
tree1064b169e995114a89972c1eab3e7ebef1f84dd4 /scumm/script_v8.cpp
parent15922a5e61f223bd9d2a8037c5482491ce4f1078 (diff)
downloadscummvm-rg350-d25da64937ad7bef5353530a63b7b917c7b86ab9.tar.gz
scummvm-rg350-d25da64937ad7bef5353530a63b7b917c7b86ab9.tar.bz2
scummvm-rg350-d25da64937ad7bef5353530a63b7b917c7b86ab9.zip
Shouldn't be necessary to do a second translation run in this place (at least I couldn't find any place were it is)
svn-id: r13437
Diffstat (limited to 'scumm/script_v8.cpp')
-rw-r--r--scumm/script_v8.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/scumm/script_v8.cpp b/scumm/script_v8.cpp
index 9c32b6e9ad..314fb4c84a 100644
--- a/scumm/script_v8.cpp
+++ b/scumm/script_v8.cpp
@@ -531,8 +531,7 @@ void ScummEngine_v8::decodeParseString(int m, int n) {
case 5:{
byte buffer[256];
addMessageToStack(_transText, buffer, sizeof(buffer));
- translateText(buffer, _transText);
- enqueueText(_transText, _string[m].xpos, _string[m].ypos, _string[m].color, _string[m].charset, _string[m].center);
+ enqueueText(buffer, _string[m].xpos, _string[m].ypos, _string[m].color, _string[m].charset, _string[m].center);
}
break;
}