Minor adjustments

This commit is contained in:
Sally Coolatta 2022-05-01 19:34:18 -04:00
parent 947dbda045
commit d3ff5342dd
2 changed files with 1 additions and 7 deletions

View file

@ -72,9 +72,6 @@ static UINT8 cheatf_ultimate(void)
static UINT8 cheatf_warp(void)
{
if (modifiedgame)
return 0;
if (menuactive && currentMenu != &MainDef)
return 0; // Only on the main menu!
@ -97,9 +94,6 @@ static UINT8 cheatf_devmode(void)
{
UINT8 i;
if (modifiedgame)
return 0;
if (menuactive && currentMenu != &MainDef)
return 0; // Only on the main menu!

View file

@ -6711,7 +6711,7 @@ static void M_DrawAddons(void)
// draw save icon
x = BASEVIDWIDTH - x - 16;
V_DrawSmallScaledPatch(x, y + 4, ((!modifiedgame || savemoddata) ? 0 : V_TRANSLUCENT), addonsp[NUM_EXT+4]);
V_DrawSmallScaledPatch(x, y + 4, (!usedCheats ? 0 : V_TRANSLUCENT), addonsp[NUM_EXT+4]);
if (modifiedgame)
V_DrawSmallScaledPatch(x, y + 4, 0, addonsp[NUM_EXT+2]);