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

Commit

Permalink
error message typo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
slouken committed May 28, 2009
1 parent 4b65d63 commit e030668
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/video/SDL_drawpoint.c
Expand Up @@ -29,7 +29,7 @@ SDL_DrawPoint(SDL_Surface * dst, int x, int y, Uint32 color)
{
/* This function doesn't work on surfaces < 8 bpp */
if (dst->format->BitsPerPixel < 8) {
SDL_SetError("SDL_DrawLine(): Unsupported surface format");
SDL_SetError("SDL_DrawPoint(): Unsupported surface format");
return (-1);
}

Expand Down

0 comments on commit e030668

Please sign in to comment.