aboutsummaryrefslogtreecommitdiff
path: root/backends/sdl
diff options
context:
space:
mode:
authorMax Horn2003-07-20 01:39:08 +0000
committerMax Horn2003-07-20 01:39:08 +0000
commita0545a22ae557b8bc01718677faa98bd00a5f316 (patch)
tree16e2ea863b28aa8c337a1dbc7f1f2f0337d4e63a /backends/sdl
parenta6afa09161939430a872fda58f2580a2f74d7d08 (diff)
downloadscummvm-rg350-a0545a22ae557b8bc01718677faa98bd00a5f316.tar.gz
scummvm-rg350-a0545a22ae557b8bc01718677faa98bd00a5f316.tar.bz2
scummvm-rg350-a0545a22ae557b8bc01718677faa98bd00a5f316.zip
whitespace
svn-id: r9089
Diffstat (limited to 'backends/sdl')
-rw-r--r--backends/sdl/sdl-common.cpp2
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);