From 8d162312010c52f970e2fbff655b34073e6dcb5d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaakko=20Ker=C3=A4nen?= Date: Sun, 16 Mar 2014 11:36:09 +0200 Subject: [PATCH] Fixed|Heretic: Removed invalid cvar 'player-weapon-order8' Heretic only has eight weapons (0...7). --- doomsday/plugins/heretic/src/h_console.c | 1 - 1 file changed, 1 deletion(-) diff --git a/doomsday/plugins/heretic/src/h_console.c b/doomsday/plugins/heretic/src/h_console.c index 38fa7b9d1d..ecae795143 100644 --- a/doomsday/plugins/heretic/src/h_console.c +++ b/doomsday/plugins/heretic/src/h_console.c @@ -128,7 +128,6 @@ cvartemplate_t gameCVars[] = { {"player-weapon-order5", 0, CVT_INT, &cfg.weaponOrder[5], 0, NUM_WEAPON_TYPES}, {"player-weapon-order6", 0, CVT_INT, &cfg.weaponOrder[6], 0, NUM_WEAPON_TYPES}, {"player-weapon-order7", 0, CVT_INT, &cfg.weaponOrder[7], 0, NUM_WEAPON_TYPES}, - {"player-weapon-order8", 0, CVT_INT, &cfg.weaponOrder[8], 0, NUM_WEAPON_TYPES}, {"player-weapon-nextmode", 0, CVT_BYTE, &cfg.weaponNextMode, 0, 1}, {"player-weapon-cycle-sequential", 0, CVT_BYTE, &cfg.weaponCycleSequential, 0, 1},