diff options
| author | scarab <scarab@0ee4d065-81f0-4d1e-b06c-ff20ad07cc3e> | 2008-08-18 21:50:13 +0000 |
|---|---|---|
| committer | scarab <scarab@0ee4d065-81f0-4d1e-b06c-ff20ad07cc3e> | 2008-08-18 21:50:13 +0000 |
| commit | 9c71274e5c4cde5dd99a0eb927243f6c481df1f2 (patch) | |
| tree | 17d77f14943b7f463145a5550330b56f0ea9548b /src/client/font.c | |
| parent | 9acea18a3a920b781414ba44e1e1651ea760867b (diff) | |
- hromada preklapeni na gettext
- zbyva odstranit language funkci
- pak uz zbyva pouze rozchodit uplne gettext a vyrobit preklady
git-svn-id: http://opensvn.csie.org/tuxanci_ng@222 0ee4d065-81f0-4d1e-b06c-ff20ad07cc3e
Diffstat (limited to 'src/client/font.c')
| -rwxr-xr-x | src/client/font.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/client/font.c b/src/client/font.c index b81c398..7e95286 100755 --- a/src/client/font.c +++ b/src/client/font.c @@ -40,8 +40,9 @@ void initFont(char *file,int size) TTF_SetFontStyle(g_font, TTF_STYLE_NORMAL); fontSize = size; - - printf("init font.. (%s)\n", file); +#ifdef DEBUG + printf("Loading font: \"%s\"\n", file); +#endif isFontInit = TRUE; } @@ -133,7 +134,8 @@ void quitFont() { TTF_CloseFont(g_font); TTF_Quit(); - - printf("quit font\n"); +#ifdef DEBUG + printf(_("Unloading font\n")); +#endif isFontInit = FALSE; } |