diff options
Diffstat (limited to 'scumm/smush/codec44.cpp')
-rw-r--r-- | scumm/smush/codec44.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/scumm/smush/codec44.cpp b/scumm/smush/codec44.cpp index ece5faa06f..b79bc3c0d6 100644 --- a/scumm/smush/codec44.cpp +++ b/scumm/smush/codec44.cpp @@ -29,10 +29,10 @@ bool Codec44Decoder::decode(Blitter & dst, Chunk & src) { int32 length = src.getSize() - 14; int32 width = getRect().width(); int32 height = getRect().height(); - byte * src2 = (byte*)malloc(length); - byte * org_src2 = src2; + byte *src2 = (byte *)malloc(length); + byte *org_src2 = src2; src.read(src2, length); - byte * dst2 = _buffer; + byte *dst2 = _buffer; byte val; do { |