aboutsummaryrefslogtreecommitdiff
path: root/engines/parallaction/graphics.cpp
diff options
context:
space:
mode:
authorNicola Mettifogo2008-08-18 07:12:05 +0000
committerNicola Mettifogo2008-08-18 07:12:05 +0000
commitc2089be66063515821b8aea6a7a815a8d1d7dbef (patch)
treea1dabb044f68448c0c814afc9391aa28e1f523c3 /engines/parallaction/graphics.cpp
parent87164b6c059ca4bb3ddd4d2257a9e53685b0f364 (diff)
downloadscummvm-rg350-c2089be66063515821b8aea6a7a815a8d1d7dbef.tar.gz
scummvm-rg350-c2089be66063515821b8aea6a7a815a8d1d7dbef.tar.bz2
scummvm-rg350-c2089be66063515821b8aea6a7a815a8d1d7dbef.zip
* Split up blt routine (there is room for a ton of improvements)
* Added scaling as a new blt option * Activated scaling for the main character in BRA svn-id: r33985
Diffstat (limited to 'engines/parallaction/graphics.cpp')
-rw-r--r--engines/parallaction/graphics.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/parallaction/graphics.cpp b/engines/parallaction/graphics.cpp
index 78d3991318..83b0a00169 100644
--- a/engines/parallaction/graphics.cpp
+++ b/engines/parallaction/graphics.cpp
@@ -506,7 +506,7 @@ void Gfx::patchBackground(Graphics::Surface &surf, int16 x, int16 y, bool mask)
r.moveTo(x, y);
uint16 z = (mask) ? _backgroundInfo->getLayer(y) : LAYER_FOREGROUND;
- blt(r, (byte*)surf.pixels, &_backgroundInfo->bg, z, 0);
+ blt(r, (byte*)surf.pixels, &_backgroundInfo->bg, z, 100, 0);
}
void Gfx::fillBackground(const Common::Rect& r, byte color) {