[CHG] Typos in comments

This commit is contained in:
Crayon2000 2010-01-09 02:41:47 +00:00
parent 3a88515815
commit ad300e55d8
6 changed files with 17 additions and 19 deletions

View file

@ -278,7 +278,7 @@ GRRLIB_texImg* GRRLIB_LoadTextureBMP (const u8 *my_bmp) {
/**
* Load a texture from a buffer.
* Take care to have the JPG finnish with 0xFF 0xD9!
* Take care to have the JPG finish with 0xFF 0xD9!
* @param my_jpg The JPEG buffer to load.
* @return A GRRLIB_texImg structure filled with image information.
*/

View file

@ -89,7 +89,7 @@ GRRLIB_texImg* GRRLIB_LoadTextureFromFile (const char* filename);
bool GRRLIB_ScrShot (const char* filename);
//------------------------------------------------------------------------------
// GRRLIB_print.c - Will someome please tell me what these are :)
// GRRLIB_print.c - Will someone please tell me what these are :)
void GRRLIB_Printf (const f32 xpos, const f32 ypos,
const GRRLIB_texImg *tex, const u32 color,
const f32 zoom, const char *text, ...);

View file

@ -82,7 +82,6 @@ INLINE
void GRRLIB_Rectangle (const f32 x, const f32 y,
const f32 width, const f32 height,
const u32 color, const u8 filled) {
f32 x2 = x + width;
f32 y2 = y + height;

View file

@ -82,8 +82,7 @@ void GRRLIB_FreeTexture (GRRLIB_texImg *tex) {
* @param tex Texture to clear.
*/
INLINE
void GRRLIB_ClearTex(GRRLIB_texImg* tex)
{
void GRRLIB_ClearTex(GRRLIB_texImg* tex) {
bzero(tex->data, (tex->h * tex->w) << 2);
GRRLIB_FlushTex(tex);
}