diff options
| author | Dusan Durech <dusan@debian.debian> | 2009-04-14 23:21:40 +0200 |
|---|---|---|
| committer | Dusan Durech <dusan@debian.debian> | 2009-04-14 23:21:40 +0200 |
| commit | 75e3e2c04b1d2b324dc8d2314e570bcba215c93f (patch) | |
| tree | 9922d9ece567409e7f2cb999b44bac882aebe1bc /src/client/game.c | |
| parent | 5772138044d95f931f285bbaf76a1faf67864e1e (diff) | |
new path API ( need old path.h )
Diffstat (limited to 'src/client/game.c')
| -rw-r--r-- | src/client/game.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/client/game.c b/src/client/game.c index 8e0c30a..42a5868 100644 --- a/src/client/game.c +++ b/src/client/game.c @@ -14,6 +14,7 @@ #include "item.h" #include "shot.h" #include "arenaFile.h" +#include "my_path.h" #include "image.h" #include "layer.h" @@ -45,7 +46,8 @@ static void initGame() { home_director_create(); - + + path_init(); interface_init(); font_init(); layer_init(); @@ -77,6 +79,7 @@ static void initGame() void game_quit() { + interface_quit(); main_menu_quit(); @@ -106,6 +109,8 @@ void game_quit() audio_quit(); #endif + path_quit(); + DEBUG_MSG(_("Quitting TUXANCI...\n")); exit(0); |