whitespace
svn-id: r9089
This commit is contained in:
parent
a6afa09161
commit
a0545a22ae
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue