mirror of
https://github.com/GRRLIB/GRRLIB.git
synced 2024-11-26 08:42:19 +00:00
[CHG] Code formatting
This commit is contained in:
parent
ef709a23b7
commit
03c4b47695
3 changed files with 10 additions and 11 deletions
|
@ -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);
|
||||
|
|
|
@ -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)) {
|
||||
|
|
Loading…
Reference in a new issue