aboutsummaryrefslogtreecommitdiff
path: root/scumm/base-costume.cpp
diff options
context:
space:
mode:
authorMax Horn2003-07-13 02:45:31 +0000
committerMax Horn2003-07-13 02:45:31 +0000
commit00615e4df7cb27cd45a7afd3053c3cdc683d860a (patch)
treef8c073bbf8553249d21f58c771ba9d37d45c36c6 /scumm/base-costume.cpp
parent8e94094c9db1c4a302fed40a30eee85eb7b1bf55 (diff)
downloadscummvm-rg350-00615e4df7cb27cd45a7afd3053c3cdc683d860a.tar.gz
scummvm-rg350-00615e4df7cb27cd45a7afd3053c3cdc683d860a.tar.bz2
scummvm-rg350-00615e4df7cb27cd45a7afd3053c3cdc683d860a.zip
fix x/y limb offsets and transparancy with C64 costume renderer
svn-id: r8962
Diffstat (limited to 'scumm/base-costume.cpp')
-rw-r--r--scumm/base-costume.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/scumm/base-costume.cpp b/scumm/base-costume.cpp
index 8a77978e69..42bbc5cc35 100644
--- a/scumm/base-costume.cpp
+++ b/scumm/base-costume.cpp
@@ -28,7 +28,10 @@ byte BaseCostumeRenderer::drawCostume(const CostumeData &cost) {
int i;
byte result = 0;
- if (_vm->_features & GF_OLD_BUNDLE) {
+ if (_vm->_version == 1) {
+ _xmove = 0;
+ _ymove = 0;
+ } else if (_vm->_features & GF_OLD_BUNDLE) {
_xmove = -72;
_ymove = -100;
} else {