X-Git-Url: https://plomlompom.com/repos/?a=blobdiff_plain;f=src%2Fclient%2Fmain.c;h=344df6911aa9d19536c5bfdae8c4876df73b0d13;hb=47139e34d3e817a5bfac9c45ef2681e95c4cc481;hp=1821e57f9205007d596f286e794cb0eba1896892;hpb=ef04cd096599eba243b40c5d40da38398adc7785;p=plomrogue diff --git a/src/client/main.c b/src/client/main.c index 1821e57..344df69 100644 --- a/src/client/main.c +++ b/src/client/main.c @@ -52,6 +52,7 @@ int main(int argc, char * argv[]) keypad(world.winDB.t_screen, TRUE); init_command_db(); /* The command DB needs to be initialized before */ load_interface_conf(); /* the interface, whose keybindings depend on it. */ + world.focus_each_turn = 1; /* Set handler for terminal window resizing. */ struct sigaction act; @@ -71,6 +72,6 @@ int main(int argc, char * argv[]) /* Leave properly. */ cleanup(); - printf("%s\n", quit_msg); + exit_trouble(printf("%s\n", quit_msg) < 0, f_name, "printf()"); exit(EXIT_SUCCESS); }