diff options
author | Torbjörn Andersson | 2005-04-19 12:22:50 +0000 |
---|---|---|
committer | Torbjörn Andersson | 2005-04-19 12:22:50 +0000 |
commit | 35c675e2d211f4f2599eff199a3a2d04d87a6863 (patch) | |
tree | 68c804b752c1f0ae685cb705bb350e10cb8dbfa2 | |
parent | d9bb4aae1d6227f463dccd1ae2c65d71c8abcdf9 (diff) | |
download | scummvm-rg350-35c675e2d211f4f2599eff199a3a2d04d87a6863.tar.gz scummvm-rg350-35c675e2d211f4f2599eff199a3a2d04d87a6863.tar.bz2 scummvm-rg350-35c675e2d211f4f2599eff199a3a2d04d87a6863.zip |
Whitespace
svn-id: r17690
-rw-r--r-- | backends/sdl/graphics.cpp | 2 |
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 { |