diff options
author | Paweł Kołodziejski | 2003-01-10 16:45:41 +0000 |
---|---|---|
committer | Paweł Kołodziejski | 2003-01-10 16:45:41 +0000 |
commit | ee25893526164bc9d09b18cfb6d0bf2bc0868030 (patch) | |
tree | 2f982a9762d53ebded091946bcffea8097d161de /scumm | |
parent | 6ebc969e1dfd1a5604244382686992564c9acc33 (diff) | |
download | scummvm-rg350-ee25893526164bc9d09b18cfb6d0bf2bc0868030.tar.gz scummvm-rg350-ee25893526164bc9d09b18cfb6d0bf2bc0868030.tar.bz2 scummvm-rg350-ee25893526164bc9d09b18cfb6d0bf2bc0868030.zip |
fixed codec47 :)
svn-id: r6388
Diffstat (limited to 'scumm')
-rw-r--r-- | scumm/smush/codec47.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scumm/smush/codec47.cpp b/scumm/smush/codec47.cpp index b920f91f1e..db3519456c 100644 --- a/scumm/smush/codec47.cpp +++ b/scumm/smush/codec47.cpp @@ -666,8 +666,8 @@ static void codec47_subgfx_lev4() { return; } if (code == 0xFF) { - *(uint16*)(d_dst + (d_pitch * 0)) = *(uint16*)(d_src + (d_pitch * 0) + 1); - *(uint16*)(d_dst + (d_pitch * 1)) = *(uint16*)(d_src + (d_pitch * 1) + 3); + *(uint16*)(d_dst + (d_pitch * 0)) = *(uint16*)(d_src + 1); + *(uint16*)(d_dst + (d_pitch * 1)) = *(uint16*)(d_src + 3); d_src += 5; return; } |