Menus/Match Race: show ring box for Item Toggles shortcut if thunderdome enabled

This commit is contained in:
James R 2023-12-31 01:58:22 -08:00
parent b7aa559449
commit 0c5858269f

View file

@ -2643,7 +2643,9 @@ void M_DrawRaceDifficulty(void)
INT32 cx = it->mvar1 + tx;
INT32 cy = 79;
V_DrawMappedPatch(cx, cy, 0, W_CachePatchName(it->patch, PU_CACHE),
const char *pat = i == drace_mritems && cv_thunderdome.value ? "RBOXTOGG" : it->patch;
V_DrawMappedPatch(cx, cy, 0, W_CachePatchName(pat, PU_CACHE),
flicker ? R_GetTranslationColormap(TC_HITLAG, 0, GTC_MENUCACHE) : NULL);
if (it->itemaction.cvar && !it->itemaction.cvar->value)