aboutsummaryrefslogtreecommitdiff
path: root/scumm/akos.h
diff options
context:
space:
mode:
authorTravis Howell2005-10-29 01:59:18 +0000
committerTravis Howell2005-10-29 01:59:18 +0000
commite90ba2e929b48abe735057a8d36b594ec1810ea2 (patch)
tree057130a25adcc8f81e1894a8cdaefda0f11536dd /scumm/akos.h
parent0b438df7ce91b0db78daffda77adcadfb02908f0 (diff)
downloadscummvm-rg350-e90ba2e929b48abe735057a8d36b594ec1810ea2.tar.gz
scummvm-rg350-e90ba2e929b48abe735057a8d36b594ec1810ea2.tar.bz2
scummvm-rg350-e90ba2e929b48abe735057a8d36b594ec1810ea2.zip
Read from XMAP resource directly, instead of reading into memory.
svn-id: r19357
Diffstat (limited to 'scumm/akos.h')
-rw-r--r--scumm/akos.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/scumm/akos.h b/scumm/akos.h
index f49b16f67c..1b0d4bd0b9 100644
--- a/scumm/akos.h
+++ b/scumm/akos.h
@@ -67,6 +67,7 @@ protected:
const AkosOffset *akof;
const byte *akcd;
const byte *akct;
+ const uint8 *xmap;
struct {
byte unk5;
@@ -90,6 +91,7 @@ public:
akof = 0;
akcd = 0;
akct = 0;
+ xmap = 0;
_actorHitMode = false;
}
@@ -99,7 +101,7 @@ public:
void setPalette(byte *palette);
void setFacing(const Actor *a);
- void setCostume(int costume);
+ void setCostume(int costume, int shadow);
protected:
byte drawLimb(const Actor *a, int limb);