aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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;
}