summaryrefslogtreecommitdiff
path: root/src/client/game.c
diff options
context:
space:
mode:
authororoborus <oroborus@0ee4d065-81f0-4d1e-b06c-ff20ad07cc3e>2008-08-08 15:08:39 +0000
committeroroborus <oroborus@0ee4d065-81f0-4d1e-b06c-ff20ad07cc3e>2008-08-08 15:08:39 +0000
commit54d61c622ba721b4ea57852e0ba6c87acfa66a2b (patch)
tree5240311b5ab0aca967089b60df22034457fe515c /src/client/game.c
parent8a49909114b3590d48d808b664db8b804bfe2ff7 (diff)
- schopnost autodetekce jazyka systému → v případě neznámého jazyka se zvolí default (angličtina)
- pamatovat posledně hranou arénu → vybrat ji a dostatečně zvýraznit - pauza klevsa [P] - seznam hráčů pod klávesou TAB – skóre, ping git-svn-id: http://opensvn.csie.org/tuxanci_ng@193 0ee4d065-81f0-4d1e-b06c-ff20ad07cc3e
Diffstat (limited to 'src/client/game.c')
-rw-r--r--src/client/game.c23
1 files changed, 13 insertions, 10 deletions
diff --git a/src/client/game.c b/src/client/game.c
index 0a8caf0..1525035 100644
--- a/src/client/game.c
+++ b/src/client/game.c
@@ -69,12 +69,13 @@ static void initGame()
initShot();
initPanel();
initWorld();
+
initScreenMainMenu();
initScreenAnalyze();
+ initScreenChoiceArena();
initScreenSetting();
initScreenSettingKeys();
initScreenGameType();
- initScreenChoiceArena();
initScreenCredits();
initScreenTable();
initScreenBrowser();
@@ -83,6 +84,17 @@ static void initGame()
void quitGame()
{
quitSDL();
+
+ quitScreenMainMenu();
+ quitScreenAnalyze();
+ quitScreenSetting();
+ quitScreenSettingKeys();
+ quitScreenGameType();
+ quitScreenChoiceArena();
+ quitScreenCredits();
+ quitScreenTable();
+ quitScreenBrowser();
+
quitLayer();
quitFont();
quitLanguage();
@@ -99,15 +111,6 @@ void quitGame()
quitMusic();
quitAudio();
#endif
- quitScreenMainMenu();
- quitScreenAnalyze();
- quitScreenSetting();
- quitScreenSettingKeys();
- quitScreenGameType();
- quitScreenChoiceArena();
- quitScreenCredits();
- quitScreenTable();
- quitScreenBrowser();
printf("quit..\n");