aboutsummaryrefslogtreecommitdiff
path: root/backends/sdl
diff options
context:
space:
mode:
authorTorbjörn Andersson2005-04-19 12:22:50 +0000
committerTorbjörn Andersson2005-04-19 12:22:50 +0000
commit35c675e2d211f4f2599eff199a3a2d04d87a6863 (patch)
tree68c804b752c1f0ae685cb705bb350e10cb8dbfa2 /backends/sdl
parentd9bb4aae1d6227f463dccd1ae2c65d71c8abcdf9 (diff)
downloadscummvm-rg350-35c675e2d211f4f2599eff199a3a2d04d87a6863.tar.gz
scummvm-rg350-35c675e2d211f4f2599eff199a3a2d04d87a6863.tar.bz2
scummvm-rg350-35c675e2d211f4f2599eff199a3a2d04d87a6863.zip
Whitespace
svn-id: r17690
Diffstat (limited to 'backends/sdl')
-rw-r--r--backends/sdl/graphics.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/backends/sdl/graphics.cpp b/backends/sdl/graphics.cpp
index 327395169e..daa93f0c36 100644
--- a/backends/sdl/graphics.cpp
+++ b/backends/sdl/graphics.cpp
@@ -787,7 +787,7 @@ void OSystem_SDL::copyRectToScreen(const byte *src, int pitch, int x, int y, int
byte *dst = (byte *)_screen->pixels + y * _screenWidth + x;
- if (_screenWidth==pitch && pitch == w) {
+ if (_screenWidth == pitch && pitch == w) {
memcpy(dst, src, h*w);
} else {
do {