aboutsummaryrefslogtreecommitdiff
path: root/engines/toon/picture.cpp
diff options
context:
space:
mode:
authorStrangerke2011-09-08 07:55:40 +0200
committerStrangerke2011-09-08 07:55:40 +0200
commitb60a706751348433457d1e5f3f39f07c20afa483 (patch)
tree53cb27a2b578e0f0736e48e3602b2616f62b4e20 /engines/toon/picture.cpp
parente080594a7be6308f75bd5edac83a8e696d97c0fd (diff)
downloadscummvm-rg350-b60a706751348433457d1e5f3f39f07c20afa483.tar.gz
scummvm-rg350-b60a706751348433457d1e5f3f39f07c20afa483.tar.bz2
scummvm-rg350-b60a706751348433457d1e5f3f39f07c20afa483.zip
JANITORIAL: Fix some formatting glitches in gob, hugo and toon
Diffstat (limited to 'engines/toon/picture.cpp')
-rw-r--r--engines/toon/picture.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/toon/picture.cpp b/engines/toon/picture.cpp
index 295e304765..6367165d6f 100644
--- a/engines/toon/picture.cpp
+++ b/engines/toon/picture.cpp
@@ -323,7 +323,7 @@ void Picture::drawLineOnMask(int32 x, int32 y, int32 x2, int32 y2, bool walkable
int32 rx = bx >> 16;
int32 ry = by >> 16;
- if( rx >= 0 && rx < _width-1 && ry >= 0 && ry < _height) { // sanity check: some lines in the game
+ if ( rx >= 0 && rx < _width-1 && ry >= 0 && ry < _height) { // sanity check: some lines in the game
// were drawing outside the screen causing corruption
if (!walkable) {
_data[_width * ry + rx] &= 0xe0;