From 3e49299c69ca98236a6e9eb89ff2d079913c658e Mon Sep 17 00:00:00 2001 From: stpohle Date: Sun, 1 Feb 2004 21:50:23 +0000 Subject: [PATCH] added F4 to start a game message into the help screen. --- ChangeLog | 12 +++++++++++- bomberclone.prj | 2 +- configure.in | 2 +- src/multiwait.c | 3 ++- src/netmenu.c | 3 +++ 5 files changed, 18 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index e26549c..b03ab82 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,14 @@ -$Id: ChangeLog,v 1.62 2004/02/01 02:52:01 stpohle Exp $ +$Id: ChangeLog,v 1.63 2004/02/01 21:50:23 stpohle Exp $ + +- Fixed: forgot to put the Message F4 to start the game + into the playerselection screen. I put this only into the + Gamescreen right before the game starts. Added even the + F4 Button into the Help Screen. + + +Version 0.11.1 +============== +2004-02-01 - Added: Deathmatch mode. diff --git a/bomberclone.prj b/bomberclone.prj index e69c53e..5636c85 100644 --- a/bomberclone.prj +++ b/bomberclone.prj @@ -45,7 +45,7 @@ anjuta.compatibility.level=1 project.name=bomberclone project.type=GENERIC project.target.type=EXECUTABLE -project.version=0.11.0 +project.version=0.11.2 project.author=steffen project.source.target=bomberclone project.has.gettext=0 diff --git a/configure.in b/configure.in index 6fde166..5792d5d 100644 --- a/configure.in +++ b/configure.in @@ -5,7 +5,7 @@ dnl Please disable it in the Anjuta project configuration AC_INIT(configure.in) AC_CANONICAL_TARGET -AM_INIT_AUTOMAKE(bomberclone, 0.11.1) +AM_INIT_AUTOMAKE(bomberclone, 0.11.2) AM_CONFIG_HEADER(config.h) diff --git a/src/multiwait.c b/src/multiwait.c index 3bad343..cd94d61 100644 --- a/src/multiwait.c +++ b/src/multiwait.c @@ -232,8 +232,9 @@ mw_draw_chat () if (chat.visible == 0) { chat_show (16, mw_chat + 16, gfx.res.x - 16, gfx.res.y - 32); chat_addstatusline ("Press [STRG] or [CTRL] - to select a player"); + chat_addstatusline ("F1 - for the Help Screen"); if (GT_MP_PTPM) - chat_addstatusline ("F1 - for the Help Screen"); + chat_addstatusline ("F4 - to start the game"); } }; diff --git a/src/netmenu.c b/src/netmenu.c index bbff23b..d3ae0e0 100644 --- a/src/netmenu.c +++ b/src/netmenu.c @@ -262,6 +262,9 @@ void network_helpscreen () { menu_create_label ("Shift-F3", 10, 140, 1); menu_create_label ("Delete one AI P.", 180, 144, 0); + + menu_create_label ("F4", 60, 170, 1); + menu_create_label ("Start the Game", 180, 174, 0); menu_loop (); menu_delete ();