aboutsummaryrefslogtreecommitdiff
path: root/scumm
diff options
context:
space:
mode:
Diffstat (limited to 'scumm')
-rw-r--r--scumm/gfx.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/scumm/gfx.cpp b/scumm/gfx.cpp
index 617b3f6fac..faaf845fcf 100644
--- a/scumm/gfx.cpp
+++ b/scumm/gfx.cpp
@@ -2108,6 +2108,10 @@ void Scumm::dissolveEffect(int width, int height) {
blits = 0;
blits_before_refresh = (3 * w * h) / 25;
+
+ // Speed up the effect for Loom
+ if (_gameId == GID_LOOM256)
+ blits_before_refresh *= 4;
for (i = 0; i < w * h; i++) {
x = offsets[i] % vs->width;