summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Howard2011-10-20 23:06:53 +0000
committerSimon Howard2011-10-20 23:06:53 +0000
commit112bc3fcab6654c20bc980a04d377b5b03044067 (patch)
treec9d5fe1c976fc18483abee2e37803e179a1146d4
parent383693bad415070e20b66d105d9a6147fd27a39a (diff)
downloadchocolate-doom-112bc3fcab6654c20bc980a04d377b5b03044067.tar.gz
chocolate-doom-112bc3fcab6654c20bc980a04d377b5b03044067.tar.bz2
chocolate-doom-112bc3fcab6654c20bc980a04d377b5b03044067.zip
Change labels in setup tool for Strife popup windows to have more
descriptive names. Subversion-branch: /branches/v2-branch Subversion-revision: 2448
-rw-r--r--src/setup/keyboard.c6
-rw-r--r--src/setup/mainmenu.c9
2 files changed, 9 insertions, 6 deletions
diff --git a/src/setup/keyboard.c b/src/setup/keyboard.c
index 4c74fd4e..42ee71de 100644
--- a/src/setup/keyboard.c
+++ b/src/setup/keyboard.c
@@ -216,9 +216,9 @@ static void ConfigExtraKeys(TXT_UNCAST_ARG(widget), TXT_UNCAST_ARG(unused))
AddKeyControl(table, "End", &key_invend);
AddKeyControl(table, "Query", &key_invquery);
AddKeyControl(table, "Drop", &key_invdrop);
- AddKeyControl(table, "PopWeap", &key_invpop);
- AddKeyControl(table, "PopMiss", &key_mission);
- AddKeyControl(table, "PopKey", &key_invkey);
+ AddKeyControl(table, "Show weapons", &key_invpop);
+ AddKeyControl(table, "Show mission", &key_mission);
+ AddKeyControl(table, "Show keys", &key_invkey);
AddKeyControl(table, "Use", &key_invuse);
AddKeyControl(table, "Use health", &key_usehealth);
}
diff --git a/src/setup/mainmenu.c b/src/setup/mainmenu.c
index bfe2cdf7..ec7fe06e 100644
--- a/src/setup/mainmenu.c
+++ b/src/setup/mainmenu.c
@@ -75,11 +75,14 @@ static void SensibleDefaults(void)
key_nextweapon = '.';
key_invleft = '[';
key_invright = ']';
- key_message_refresh = KEY_ENTER;
- mousebprevweapon = 4;
+ key_message_refresh = '\'';
+ key_mission = 'i'; // Strife keys
+ key_invpop = 'o';
+ key_invkey = 'p';
+ mousebprevweapon = 4; // Scroll wheel = weapon cycle
mousebnextweapon = 3;
snd_musicdevice = 3;
- joybspeed = 29;
+ joybspeed = 29; // Always run
vanilla_savegame_limit = 0;
vanilla_keyboard_mapping = 0;
vanilla_demo_limit = 0;