Whitespace

svn-id: r17690
This commit is contained in:
Torbjörn Andersson 2005-04-19 12:22:50 +00:00
parent d9bb4aae1d
commit 35c675e2d2

View File

@ -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 {