aboutsummaryrefslogtreecommitdiff
path: root/engines/cine/unpack.h
diff options
context:
space:
mode:
authorEugene Sandulenko2006-03-23 03:45:52 +0000
committerEugene Sandulenko2006-03-23 03:45:52 +0000
commit0b35672f782f21b4937751c4bb0fb486e65b4e92 (patch)
treec9dae3c2792f0083078d8f5020a79a0f4ecc0c63 /engines/cine/unpack.h
parent6faa76d28758e9bea6e2cbfb8c7fa985c4bed1d5 (diff)
downloadscummvm-rg350-0b35672f782f21b4937751c4bb0fb486e65b4e92.tar.gz
scummvm-rg350-0b35672f782f21b4937751c4bb0fb486e65b4e92.tar.bz2
scummvm-rg350-0b35672f782f21b4937751c4bb0fb486e65b4e92.zip
uint8 -> byte
svn-id: r21414
Diffstat (limited to 'engines/cine/unpack.h')
-rw-r--r--engines/cine/unpack.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/cine/unpack.h b/engines/cine/unpack.h
index 1fe92c28c3..56edb1f596 100644
--- a/engines/cine/unpack.h
+++ b/engines/cine/unpack.h
@@ -34,11 +34,11 @@ struct UnpackCtx {
int size, datasize;
uint32 crc;
uint32 chk;
- uint8 *dst;
- const uint8 *src;
+ byte *dst;
+ const byte *src;
};
-bool delphineUnpack(uint8 *dst, const uint8 *src, int len);
+bool delphineUnpack(byte *dst, const byte *src, int len);
} // End of namespace Cine