summaryrefslogtreecommitdiff
path: root/src/client/game.c
diff options
context:
space:
mode:
authorscarab <scarab@0ee4d065-81f0-4d1e-b06c-ff20ad07cc3e>2008-08-18 21:50:13 +0000
committerscarab <scarab@0ee4d065-81f0-4d1e-b06c-ff20ad07cc3e>2008-08-18 21:50:13 +0000
commit9c71274e5c4cde5dd99a0eb927243f6c481df1f2 (patch)
tree17d77f14943b7f463145a5550330b56f0ea9548b /src/client/game.c
parent9acea18a3a920b781414ba44e1e1651ea760867b (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/game.c')
-rw-r--r--src/client/game.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/client/game.c b/src/client/game.c
index 1525035..1c2688f 100644
--- a/src/client/game.c
+++ b/src/client/game.c
@@ -48,7 +48,9 @@ static void initGame()
if( initLanguage() == -1 )
{
- printf("fatal error !\n");
+#ifdef DEBUG
+ printf(_("I was unable to initialize old nls system (if you see this something wierd is happening)!\n"));
+#endif
exit(-1);
}
@@ -111,9 +113,9 @@ void quitGame()
quitMusic();
quitAudio();
#endif
-
- printf("quit..\n");
-
+#ifdef DEBUG
+ printf(_("Quitting TUXANCI...\n"));
+#endif
exit(0);
}