aboutsummaryrefslogtreecommitdiff
path: root/scumm/script_v2.cpp
diff options
context:
space:
mode:
authorMax Horn2003-05-22 14:22:35 +0000
committerMax Horn2003-05-22 14:22:35 +0000
commita6c8b58045e4f2de019fcadc951a344b5b2c5a99 (patch)
treedde6bcc9f57ffed88401d1427c58cf660bd8cf8c /scumm/script_v2.cpp
parenta9788c771a58d0e1f3093d56a0fde7b9e7844164 (diff)
downloadscummvm-rg350-a6c8b58045e4f2de019fcadc951a344b5b2c5a99.tar.gz
scummvm-rg350-a6c8b58045e4f2de019fcadc951a344b5b2c5a99.tar.bz2
scummvm-rg350-a6c8b58045e4f2de019fcadc951a344b5b2c5a99.zip
endian fix
svn-id: r7828
Diffstat (limited to 'scumm/script_v2.cpp')
-rw-r--r--scumm/script_v2.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/script_v2.cpp b/scumm/script_v2.cpp
index cfac1a86a1..1fdcc2bd92 100644
--- a/scumm/script_v2.cpp
+++ b/scumm/script_v2.cpp
@@ -391,8 +391,8 @@ void Scumm_v2::decodeParseString() {
*ptr++ = 0xFF;
*ptr++ = c;
if (c > 3) {
- *ptr++ = 0;
*ptr++ = fetchScriptByte();
+ *ptr++ = 0;
}
} else
*ptr++ = c;