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

Commit

Permalink
Fixed potential crash in testbitmap
Browse files Browse the repository at this point in the history
  • Loading branch information
slouken committed Mar 22, 2009
1 parent f9125ec commit 8a9603d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/testbitmap.c
Expand Up @@ -108,7 +108,7 @@ main(int argc, char *argv[])
/* Set 640x480 video mode */
if ((screen =
SDL_SetVideoMode(video_w, video_h, video_bpp, videoflags)) == NULL) {
fprintf(stderr, "Couldn't set %%d%d video mode: %s\n", video_w,
fprintf(stderr, "Couldn't set %dx%d %d video mode: %s\n", video_w,
video_h, video_bpp, SDL_GetError());
quit(2);
}
Expand Down

0 comments on commit 8a9603d

Please sign in to comment.