Mercurial > sdl-ios-xcode
changeset 1728:b1ee090d194f SDL-1.3
Fixed typo in stretch render code.
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Fri, 07 Jul 2006 10:39:02 +0000 |
parents | 90a3e0fccb88 |
children | 0ef52d56e8bb |
files | src/video/win32/SDL_dibrender.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/video/win32/SDL_dibrender.c Fri Jul 07 10:29:16 2006 +0000 +++ b/src/video/win32/SDL_dibrender.c Fri Jul 07 10:39:02 2006 +0000 @@ -564,7 +564,7 @@ } else { if (!StretchBlt (data->current_hdc, dstrect->x, dstrect->y, dstrect->w, - srcrect->h, data->memory_hdc, srcrect->x, srcrect->y, + dstrect->h, data->memory_hdc, srcrect->x, srcrect->y, srcrect->w, srcrect->h, SRCCOPY)) { WIN_SetError("StretchBlt()"); return -1;