diff --git a/scumm/smush/codec47.cpp b/scumm/smush/codec47.cpp index b920f91f1e3..db3519456c6 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; }