mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-21 09:21:08 +00:00
Fix CMI Akos 'garbage' bug, based off of eriktorbjorn patch 659331
svn-id: r6222
This commit is contained in:
parent
829b2284e4
commit
7070a7194a
@ -273,8 +273,8 @@ bool AkosRenderer::drawCostumeChannel(int chan)
|
||||
void AkosRenderer::codec1_genericDecode()
|
||||
{
|
||||
byte *src, *dst;
|
||||
byte len, height, maskbit;
|
||||
uint y, color;
|
||||
byte len, maskbit;
|
||||
uint y, color, height;
|
||||
const byte *scaleytab, *mask;
|
||||
|
||||
|
||||
@ -337,8 +337,8 @@ void AkosRenderer::codec1_genericDecode()
|
||||
void AkosRenderer::codec1_spec1()
|
||||
{
|
||||
byte *src, *dst;
|
||||
byte len, height, maskbit;
|
||||
uint y, color;
|
||||
byte len, maskbit;
|
||||
uint y, color, height;
|
||||
byte pcolor;
|
||||
const byte *scaleytab, *mask;
|
||||
|
||||
@ -410,8 +410,8 @@ void AkosRenderer::codec1_spec2()
|
||||
void AkosRenderer::codec1_spec3()
|
||||
{
|
||||
byte *src, *dst;
|
||||
byte len, height, maskbit;
|
||||
uint y, color;
|
||||
byte len, maskbit;
|
||||
uint y, color, height;
|
||||
uint pcolor;
|
||||
const byte *scaleytab, *mask;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user