Corrected words in comments of test programs.

This commit is contained in:
Philipp Wiesemann 2013-07-27 21:02:50 +02:00
parent fac63fa2e4
commit c03703d90d
3 changed files with 5 additions and 5 deletions

View file

@ -75,7 +75,7 @@ main(int argc, char *argv[])
return 1;
}
/* Clear the rendering surface with the specidfied colour */
/* Clear the rendering surface with the specified color */
SDL_SetRenderDrawColor(renderer, 0xFF, 0xFF, 0xFF, 0);
SDL_RenderClear(renderer);
@ -94,7 +94,7 @@ main(int argc, char *argv[])
DrawChessBoard(renderer);
/* Got everything on redering surface,
/* Got everything on rendering surface,
now Update the drawing image on window screen */
SDL_UpdateWindowSurface(window);