Remove the nonfunctional "title screen tutorial" hotkey and binding

The code that it used to trigger was removed in
f86168ab26.

(cherry picked from commits 46fbe51a6f
and afd9bd1688)
This commit is contained in:
Steve Cotton 2021-12-06 08:07:56 +01:00 committed by Steve Cotton
parent 513e8dba2b
commit fa0c0c2554
3 changed files with 0 additions and 6 deletions

View file

@ -519,10 +519,6 @@
command="title_screen__editor"
key="e"
[/hotkey]
[hotkey]
command="title_screen__tutorial"
key="t"
[/hotkey]
[hotkey]
command="title_screen__campaign"
key="c"

View file

@ -283,7 +283,6 @@ std::array<hotkey_command_temp, HOTKEY_NULL - 1> master_hotkey_list {{
{ TITLE_SCREEN__RELOAD_WML, "title_screen__reload_wml", N_("Refresh WML"), true , scope_editor | scope_main, HKCAT_PLACEHOLDER, "" },
{ TITLE_SCREEN__NEXT_TIP, "title_screen__next_tip", N_("Next Tip of the Day"), false, scope_main, HKCAT_GENERAL, "" },
{ TITLE_SCREEN__PREVIOUS_TIP, "title_screen__previous_tip", N_("Previous Tip of the Day"), false, scope_main, HKCAT_GENERAL, "" },
{ TITLE_SCREEN__TUTORIAL, "title_screen__tutorial", N_("Start Tutorial"), false , scope_main, HKCAT_GENERAL, "" },
{ TITLE_SCREEN__CAMPAIGN, "title_screen__campaign", N_("Start Campaign"), false , scope_main, HKCAT_GENERAL, "" },
{ TITLE_SCREEN__MULTIPLAYER, "title_screen__multiplayer", N_("Start Multiplayer Game"), false, scope_main, HKCAT_GENERAL, "" },
{ TITLE_SCREEN__ADDONS, "title_screen__addons", N_("Manage Add-ons"), false , scope_main, HKCAT_GENERAL, "" },

View file

@ -97,7 +97,6 @@ enum HOTKEY_COMMAND {
TITLE_SCREEN__RELOAD_WML,
TITLE_SCREEN__NEXT_TIP,
TITLE_SCREEN__PREVIOUS_TIP,
TITLE_SCREEN__TUTORIAL,
TITLE_SCREEN__CAMPAIGN,
TITLE_SCREEN__MULTIPLAYER,
TITLE_SCREEN__ADDONS,