From d060175c98d6073de0317aa747c112dfb086b669 Mon Sep 17 00:00:00 2001 From: Ben Kibbey Date: Tue, 27 Sep 2011 20:05:40 -0400 Subject: [PATCH] Changed the 'help' string after pressing F1 to 'more help' since it prompts for game mode help text. --- src/rcfile.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/rcfile.c b/src/rcfile.c index fb9fb22..65c202e 100644 --- a/src/rcfile.c +++ b/src/rcfile.c @@ -255,7 +255,7 @@ void set_default_keys() add_key_binding(&history_keys, do_history_rav_next, '+', "next variation of the previous move", 0); add_key_binding(&history_keys, do_history_rav_prev, '-', "previous variation of the previous move", 0); add_key_binding(&history_keys, do_history_menu, 'M', "move history tree", 0); - add_key_binding(&history_keys, do_history_help, KEY_F(1), "help", 0); + add_key_binding(&history_keys, do_history_help, KEY_F(1), "more help", 0); add_key_binding(&history_keys, do_history_help, CTRL('g'), NULL, 0); add_key_binding(&history_keys, do_history_toggle, 'h', "exit history mode", 0); @@ -267,7 +267,7 @@ void set_default_keys() add_key_binding(&edit_keys, do_edit_toggle_castle, 'c', "toggle castling availability", 0); add_key_binding(&edit_keys, do_edit_enpassant, 'p', "toggle enpassant square", 0); add_key_binding(&edit_keys, do_edit_switch_turn, 'w', "toggle turn", 0); - add_key_binding(&edit_keys, do_edit_help, KEY_F(1), "help", 0); + add_key_binding(&edit_keys, do_edit_help, KEY_F(1), "more help", 0); add_key_binding(&history_keys, do_edit_help, CTRL('g'), NULL, 0); add_key_binding(&edit_keys, do_edit_exit, 'e', "exit edit mode", 0); @@ -284,7 +284,7 @@ void set_default_keys() add_key_binding(&play_keys, do_play_toggle_pause, 'p', "toggle pausing of this game", 0); add_key_binding(&play_keys, do_play_history_mode, 'h', "enter history mode", 0); add_key_binding(&play_keys, do_play_edit_mode, 'e', "enter edit mode", 0); - add_key_binding(&play_keys, do_play_help, KEY_F(1), "help", 0); + add_key_binding(&play_keys, do_play_help, KEY_F(1), "more help", 0); add_key_binding(&play_keys, do_play_help, CTRL('g'), NULL, 0); add_key_binding(&global_keys, do_global_tag_edit, CTRL('t'), "edit roster tags", 0); -- 2.11.4.GIT