diff options
Diffstat (limited to 'src/main.c')
| -rw-r--r-- | src/main.c | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -13,6 +13,7 @@ #include "screen_analyze.h" #include "screen_setting.h" #include "screen_gameType.h" +#include "screen_choiceArena.h" #include "wall.h" #include "shot.h" #include "panel.h" @@ -46,6 +47,7 @@ static void init() initScreenAnalyze(); initScreenSetting(); initScreenGameType(); + initScreenChoiceArena(); } void quit() @@ -68,6 +70,9 @@ void quit() quitScreenAnalyze(); quitScreenSetting(); quitScreenGameType(); + quitScreenChoiceArena(); + + printf("quit..\n"); exit(0); } @@ -126,6 +131,8 @@ int main(int argc, char *argv[]) { srand( (unsigned) time(NULL) ); + printf("dist dir = %s\n", DISTDIR); + my_argc = argc; my_argv = argv; |