diff --git a/src/configuration.c b/src/configuration.c index 916dc4f..05903b0 100644 --- a/src/configuration.c +++ b/src/configuration.c @@ -1,4 +1,4 @@ -/* $Id: configuration.c,v 1.65 2004/10/03 20:22:46 stpohle Exp $ +/* $Id: configuration.c,v 1.66 2004/10/06 17:43:28 stpohle Exp $ * configuration */ #include @@ -135,7 +135,7 @@ config_init (int argc, char **argv) ReadPrgArgs (argc, argv); gfx_init (); draw_logo (); - playermenu (); + playernamemenu (); } else { ReadPrgArgs (argc, argv); diff --git a/src/playermenu.c b/src/playermenu.c index 50b0ced..0fc5f21 100644 --- a/src/playermenu.c +++ b/src/playermenu.c @@ -1,4 +1,4 @@ -/* $Id: playermenu.c,v 1.10 2004/10/04 21:36:47 stpohle Exp $ +/* $Id: playermenu.c,v 1.11 2004/10/06 17:43:29 stpohle Exp $ */ #include "bomberclone.h" @@ -436,7 +436,7 @@ void teammenu () { void playernamemenu () { _menu *menu; - menu = menu_new ("Playernames", 350, 200); + menu = menu_new ("Playernames", 350, 150); menu_create_entry (menu, "Player 1:", -1, 50, 300, &bman.playername, LEN_PLAYERNAME, MENU_entrytext, 1); menu_create_entry (menu, "Player 2:", -1, 80, 300, &bman.player2name, LEN_PLAYERNAME, MENU_entrytext, 2);