Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Commit

Permalink
Fixed typo in stretch render code.
Browse files Browse the repository at this point in the history
  • Loading branch information
slouken committed Jul 7, 2006
1 parent dcaf45a commit 20279e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/video/win32/SDL_dibrender.c
Expand Up @@ -564,7 +564,7 @@ SDL_DIB_RenderCopy(SDL_Renderer * renderer, SDL_Texture * texture,
} 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;
Expand Down

0 comments on commit 20279e5

Please sign in to comment.