diff --git a/src/configuration.c b/src/configuration.c index d4ba954..dc14570 100644 --- a/src/configuration.c +++ b/src/configuration.c @@ -78,7 +78,6 @@ ReadConfig () return -1; } d_printf ("Reading Config-file: %s", filename); - /* printf("Reading config file...\n"); */ while (fgets (buf, sizeof (buf), config) != NULL) { findit = strchr (buf, '\n'); diff --git a/src/multiwait.c b/src/multiwait.c index 8059cf9..4054ae7 100644 --- a/src/multiwait.c +++ b/src/multiwait.c @@ -264,6 +264,7 @@ wait_for_players () else { /* we have a connect so draw status */ mw_draw_status (); mw_draw_gfxselect (selgfx); + UpdateRects_nr = 0; gfx_AddUpdateRect (0, 0, gfx.res.x, mw_y); mw_draw_chat (); } @@ -346,9 +347,13 @@ wait_for_players () if ((GT_MP_PTPM) && keys[SDLK_F5] && (!keypressed)) { /* Map modification */ - menu_get_text ("Enter the path of a field file", bman.fieldpath, 30); - draw_logo (); - chat_drawbox (); + mapmenu (); + mw_draw_status (); + mw_draw_gfxselect (selgfx); + UpdateRects_nr = 0; + gfx_AddUpdateRect (0, 0, gfx.res.x, mw_y); + mw_draw_chat (); + gfx_UpdateRects (); } chat_loop (&event);