aboutsummaryrefslogtreecommitdiff
path: root/scumm/akos.cpp
diff options
context:
space:
mode:
authorJames Brown2002-10-21 12:41:46 +0000
committerJames Brown2002-10-21 12:41:46 +0000
commit88462aec1ae7bef979b53a8e4d0ecb59555ad914 (patch)
treea9890a9beb504282e9757eb417238d3030ffc573 /scumm/akos.cpp
parent31c773923ee34e05c06a7c00b784b924eff526fb (diff)
downloadscummvm-rg350-88462aec1ae7bef979b53a8e4d0ecb59555ad914.tar.gz
scummvm-rg350-88462aec1ae7bef979b53a8e4d0ecb59555ad914.tar.bz2
scummvm-rg350-88462aec1ae7bef979b53a8e4d0ecb59555ad914.zip
add missing bitmask value. akos16 is still quite broken however
svn-id: r5211
Diffstat (limited to 'scumm/akos.cpp')
-rw-r--r--scumm/akos.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/akos.cpp b/scumm/akos.cpp
index 3cd71dc4e8..31ced5b761 100644
--- a/scumm/akos.cpp
+++ b/scumm/akos.cpp
@@ -1077,7 +1077,7 @@ static byte akos16_shift;
static int32 akos16_bits;
static int32 akos16_numbits;
static byte * akos16_dataptr;
-static int32 _bitMask[] = {0, 1, 3, 7, 15, 31, 127, 255};
+static int32 _bitMask[] = {0, 1, 3, 7, 15, 31, 63, 127, 255};
static byte akos16_buffer[336];
void AkosRenderer::akos16SetupBitReader(byte *src) {