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

Commit

Permalink
Corrected spelling in C source file.
Browse files Browse the repository at this point in the history
  • Loading branch information
philippwiesemann committed Apr 29, 2013
1 parent c127487 commit 3469c59
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/video/SDL_RLEaccel.c
Expand Up @@ -464,7 +464,7 @@ SDL_RLEBlit(SDL_Surface * src, SDL_Rect * srcrect,
srcbuf = (Uint8 *) src->map->data;

{
/* skip lines at the top if neccessary */
/* skip lines at the top if necessary */
int vskip = srcrect->y;
int ofs = 0;
if (vskip) {
Expand Down Expand Up @@ -1451,7 +1451,7 @@ SDL_RLESurface(SDL_Surface * surface)
/*
* Un-RLE a surface with pixel alpha
* This may not give back exactly the image before RLE-encoding; all
* completely transparent pixels will be lost, and colour and alpha depth
* completely transparent pixels will be lost, and color and alpha depth
* may have been reduced (when encoding for 16bpp targets).
*/
static SDL_bool
Expand Down Expand Up @@ -1545,7 +1545,7 @@ SDL_UnRLESurface(SDL_Surface * surface, int recode)
return;
}

/* fill it with the background colour */
/* fill it with the background color */
SDL_FillRect(surface, NULL, surface->map->info.colorkey);

/* now render the encoded surface */
Expand Down

0 comments on commit 3469c59

Please sign in to comment.