[CHG] Code formatting

This commit is contained in:
Crayon2000 2010-01-04 21:43:12 +00:00
parent ef709a23b7
commit 03c4b47695
3 changed files with 10 additions and 11 deletions

View file

@ -48,7 +48,7 @@ void GRRLIB_GeckoPrintf (const char *text, ...) {
int size;
char tmp[1024];
if (!(geckoinit)) return;
if (!geckoinit) return;
va_list argp;
va_start(argp, text);

View file

@ -33,7 +33,6 @@ static void DrawBitmap(FT_Bitmap *bitmap, int offset, int top, const u32 color)
/**
* Initialize FreeType library.
* @return int 0=OK; -1=Failed
* @see GRRLIB_ExitFreetype
*/
int GRRLIB_InitTTF () {
if (FT_Init_FreeType(&ftLibrary)) {