summaryrefslogtreecommitdiff
path: root/src/client/game.c
diff options
context:
space:
mode:
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);
}