diff options
author | Max Horn | 2003-07-20 01:39:08 +0000 |
---|---|---|
committer | Max Horn | 2003-07-20 01:39:08 +0000 |
commit | a0545a22ae557b8bc01718677faa98bd00a5f316 (patch) | |
tree | 16e2ea863b28aa8c337a1dbc7f1f2f0337d4e63a | |
parent | a6afa09161939430a872fda58f2580a2f74d7d08 (diff) | |
download | scummvm-rg350-a0545a22ae557b8bc01718677faa98bd00a5f316.tar.gz scummvm-rg350-a0545a22ae557b8bc01718677faa98bd00a5f316.tar.bz2 scummvm-rg350-a0545a22ae557b8bc01718677faa98bd00a5f316.zip |
whitespace
svn-id: r9089
-rw-r--r-- | backends/sdl/sdl-common.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backends/sdl/sdl-common.cpp b/backends/sdl/sdl-common.cpp index 3a261026c6..1fa453e5c8 100644 --- a/backends/sdl/sdl-common.cpp +++ b/backends/sdl/sdl-common.cpp @@ -195,7 +195,7 @@ void OSystem_SDL_Common::copy_rect(const byte *buf, int pitch, int x, int y, int byte *dst = (byte *)_screen->pixels + y * _screenWidth + x; if (_screenWidth==pitch && pitch==w) { - memcpy (dst, buf, h*w); + memcpy(dst, buf, h*w); } else { do { memcpy(dst, buf, w); |