aboutsummaryrefslogtreecommitdiff
path: root/scumm/akos.cpp
diff options
context:
space:
mode:
authorGregory Montoir2004-12-19 12:30:40 +0000
committerGregory Montoir2004-12-19 12:30:40 +0000
commitda874257a50f82150ae475c3938e3422d6fa4984 (patch)
tree2188fe28e32f22e102a35594e7f75d097e649022 /scumm/akos.cpp
parentec2099a9020e341d9cc23cb2a9cb8c14e8bc8703 (diff)
downloadscummvm-rg350-da874257a50f82150ae475c3938e3422d6fa4984.tar.gz
scummvm-rg350-da874257a50f82150ae475c3938e3422d6fa4984.tar.bz2
scummvm-rg350-da874257a50f82150ae475c3938e3422d6fa4984.zip
to please PalmOS, I moved the _wiz member to ScummEngine_v70he, where it actually belongs, I don't quite like the upcasts I introduced, but I don't know how to deal without them
svn-id: r16132
Diffstat (limited to 'scumm/akos.cpp')
-rw-r--r--scumm/akos.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/scumm/akos.cpp b/scumm/akos.cpp
index 1aadc1fdec..be1bbbb3c5 100644
--- a/scumm/akos.cpp
+++ b/scumm/akos.cpp
@@ -28,6 +28,7 @@
#include "scumm/imuse.h"
#include "scumm/imuse_digi/dimuse.h"
#include "scumm/sound.h"
+#include "scumm/wiz_he.h"
namespace Scumm {
@@ -1238,7 +1239,7 @@ byte AkosRenderer::codec32(int xmoveCur, int ymoveCur) {
_draw_bottom = dst.bottom;
byte *dstPtr = (byte *)_out.pixels + dst.left + dst.top * _out.pitch;
- _vm->_wiz.decompressWizImage(dstPtr, _out.pitch, dst, _srcptr, src);
+ Wiz::decompressWizImage(dstPtr, _out.pitch, dst, _srcptr, src);
return 0;
}