whitespace

svn-id: r9089
This commit is contained in:
Max Horn 2003-07-20 01:39:08 +00:00
parent a6afa09161
commit a0545a22ae

View File

@ -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);