aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVincent Hamm2002-04-24 07:53:48 +0000
committerVincent Hamm2002-04-24 07:53:48 +0000
commit5fadebd951b90c3b150e6eac4acbcbd0f04531b7 (patch)
tree8a0b9f3fa92eba7312ed24036aed95e14f118662
parent1d2514665eb31cfca13f086479fd1690032bda1b (diff)
downloadscummvm-rg350-5fadebd951b90c3b150e6eac4acbcbd0f04531b7.tar.gz
scummvm-rg350-5fadebd951b90c3b150e6eac4acbcbd0f04531b7.tar.bz2
scummvm-rg350-5fadebd951b90c3b150e6eac4acbcbd0f04531b7.zip
Quick fix to ft's fuel tower bug
svn-id: r4071
-rw-r--r--actor.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/actor.cpp b/actor.cpp
index cdc6eec980..99b01a823f 100644
--- a/actor.cpp
+++ b/actor.cpp
@@ -349,6 +349,9 @@ void Scumm::setupActorScale(Actor * a)
if (scale > 255)
warning("Actor %d at %d, scale %d out of range", a->number, a->y, scale);
+ if(scale == 1 && _currentRoom == 76)
+ scale = 0xFF;
+
a->scalex = (byte)scale;
a->scaley = (byte)scale;
}