diff options
author | Max Horn | 2003-05-22 14:22:35 +0000 |
---|---|---|
committer | Max Horn | 2003-05-22 14:22:35 +0000 |
commit | a6c8b58045e4f2de019fcadc951a344b5b2c5a99 (patch) | |
tree | dde6bcc9f57ffed88401d1427c58cf660bd8cf8c | |
parent | a9788c771a58d0e1f3093d56a0fde7b9e7844164 (diff) | |
download | scummvm-rg350-a6c8b58045e4f2de019fcadc951a344b5b2c5a99.tar.gz scummvm-rg350-a6c8b58045e4f2de019fcadc951a344b5b2c5a99.tar.bz2 scummvm-rg350-a6c8b58045e4f2de019fcadc951a344b5b2c5a99.zip |
endian fix
svn-id: r7828
-rw-r--r-- | scumm/script_v2.cpp | 2 |
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; |