diff options
author | Eugene Sandulenko | 2016-06-15 07:33:52 +0200 |
---|---|---|
committer | Eugene Sandulenko | 2016-06-15 07:33:52 +0200 |
commit | 0211c0b27cff86506ae8e1125693abf204305d5f (patch) | |
tree | 1e9b7412dbbe6efc61c5bbd3e6142537232c2257 /engines/scumm/he/moonbase | |
parent | 2b8140136836a9620714a25bce597909849fe2a6 (diff) | |
download | scummvm-rg350-0211c0b27cff86506ae8e1125693abf204305d5f.tar.gz scummvm-rg350-0211c0b27cff86506ae8e1125693abf204305d5f.tar.bz2 scummvm-rg350-0211c0b27cff86506ae8e1125693abf204305d5f.zip |
SCUMM HE: Plugged Moonbase distortion in
Diffstat (limited to 'engines/scumm/he/moonbase')
-rw-r--r-- | engines/scumm/he/moonbase/distortion.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/engines/scumm/he/moonbase/distortion.cpp b/engines/scumm/he/moonbase/distortion.cpp index 8465771820..0bef2459b5 100644 --- a/engines/scumm/he/moonbase/distortion.cpp +++ b/engines/scumm/he/moonbase/distortion.cpp @@ -190,6 +190,7 @@ void Moonbase::blitDistortion(byte *bufferData, const int bufferWidth, const int int src_x = (x + xOffset); int src_y = (y + yOffset); + warning("x1: %d y1: %d x2: %d y2: %d", (src_x - l_reach), (src_y - t_reach), (src_x + r_reach), (src_y + b_reach)); Common::Rect srcReach((src_x - l_reach), (src_y - t_reach), (src_x + r_reach), (src_y + b_reach)); Common::Rect srcLimits(srcBitmap.w, srcBitmap.h); |