M_DrawCupSelect: Only draw Emerald on difficulties greater than Easy.

This commit is contained in:
toaster 2023-05-31 11:55:20 +01:00
parent c0e4e4075b
commit ceb1655185

View file

@ -2447,7 +2447,8 @@ void M_DrawCupSelect(void)
if (charPat)
V_DrawFixedPatch((rankx)*FRACUNIT, (ranky)*FRACUNIT, FRACUNIT, 0, charPat, colormap);
if (windata->got_emerald == true)
if (cv_dummygpdifficulty.value > 0
&& windata->got_emerald == true)
{
rankx += 12 + 1;