diff --git a/doomsday/plugins/common/src/hu_menu.c b/doomsday/plugins/common/src/hu_menu.c index 9bae64a8e5..ecd31363af 100644 --- a/doomsday/plugins/common/src/hu_menu.c +++ b/doomsday/plugins/common/src/hu_menu.c @@ -1305,7 +1305,6 @@ cvartemplate_t menuCVars[] = { { "menu-shadow", 0, CVT_FLOAT, &cfg.menuShadow, 0, 1 }, { "menu-patch-replacement", 0, CVT_INT, &cfg.menuPatchReplaceMode, PRM_FIRST, PRM_LAST }, { "menu-slam", 0, CVT_BYTE, &cfg.menuSlam, 0, 1 }, - { "menu-quick-ask", 0, CVT_BYTE, &cfg.confirmQuickGameSave, 0, 1 }, { "menu-hotkeys", 0, CVT_BYTE, &cfg.menuShortcutsEnabled, 0, 1 }, #if __JDOOM__ || __JDOOM64__ { "menu-quitsound", 0, CVT_INT, &cfg.menuQuitSound, 0, 1 }, diff --git a/doomsday/plugins/common/src/p_saveg.c b/doomsday/plugins/common/src/p_saveg.c index 00d0676a14..74007f6947 100644 --- a/doomsday/plugins/common/src/p_saveg.c +++ b/doomsday/plugins/common/src/p_saveg.c @@ -370,8 +370,12 @@ static thinkerinfo_t thinkerInfo[] = { }; cvartemplate_t cvars[] = { - {"game-save-quick-slot", CVF_NO_MAX|CVF_NO_ARCHIVE, CVT_INT, &cvarQuickSlot, -1, 0}, - {NULL} + { "game-save-quick-confirm", 0, CVT_BYTE, &cfg.confirmQuickGameSave, 0, 1 }, + { "game-save-quick-slot", CVF_NO_MAX|CVF_NO_ARCHIVE, CVT_INT, &cvarQuickSlot, -1, 0 }, + + // Aliases for obsolete cvars: + { "menu-quick-ask", 0, CVT_BYTE, &cfg.confirmQuickGameSave, 0, 1 }, + {NULL} }; // CODE -------------------------------------------------------------------- diff --git a/doomsday/plugins/jdoom/data/conhelp.txt b/doomsday/plugins/jdoom/data/conhelp.txt index 84ce18fdec..f61846517c 100644 --- a/doomsday/plugins/jdoom/data/conhelp.txt +++ b/doomsday/plugins/jdoom/data/conhelp.txt @@ -308,6 +308,9 @@ desc = Color of HUD messages blue component. [msg-blink] desc = HUD messages blink for this number of tics when printed. +[game-save-quick-confirm] +desc = 1=Ask me to confirm when quick saving/loading. + [game-save-quick-slot] desc = Current "quick" save slot number. -1=None (default). diff --git a/doomsday/plugins/jdoom64/data/conhelp.txt b/doomsday/plugins/jdoom64/data/conhelp.txt index 94cb1e6df5..d55f2acc9d 100644 --- a/doomsday/plugins/jdoom64/data/conhelp.txt +++ b/doomsday/plugins/jdoom64/data/conhelp.txt @@ -307,6 +307,9 @@ desc = Color of HUD messages blue component. [msg-blink] desc = HUD messages blink for this number of tics when printed. +[game-save-quick-confirm] +desc = 1=Ask me to confirm when quick saving/loading. + [game-save-quick-slot] desc = Current "quick" save slot number. -1=None (default). diff --git a/doomsday/plugins/jheretic/data/conhelp.txt b/doomsday/plugins/jheretic/data/conhelp.txt index ab833fd80a..49bc4e2000 100644 --- a/doomsday/plugins/jheretic/data/conhelp.txt +++ b/doomsday/plugins/jheretic/data/conhelp.txt @@ -317,6 +317,9 @@ desc = Color of HUD messages blue component. [msg-blink] desc = HUD messages blink for this number of tics when printed. +[game-save-quick-confirm] +desc = 1=Ask me to confirm when quick saving/loading. + [game-save-quick-slot] desc = Current "quick" save slot number. -1=None (default). diff --git a/doomsday/plugins/jhexen/data/conhelp.txt b/doomsday/plugins/jhexen/data/conhelp.txt index 5e303e8e4e..c83b01198f 100644 --- a/doomsday/plugins/jhexen/data/conhelp.txt +++ b/doomsday/plugins/jhexen/data/conhelp.txt @@ -356,6 +356,9 @@ desc = Current hub. [game-music] desc = Currently playing music (id). +[game-save-quick-confirm] +desc = 1=Ask me to confirm when quick saving/loading. + [game-save-quick-slot] desc = Current "quick" save slot number. -1=None (default).