Display whether Frantic Items is on alongside Gear speed on pause menu.

This commit is contained in:
Freaky Mutant Man 2025-10-06 20:54:22 +00:00 committed by Eidolon
parent 499fccf061
commit f18022e9c8

View file

@ -6102,6 +6102,14 @@ static char *M_GetGameplayMode(void)
return va("Intense");
return va("Relaxed");
}
if (franticitems)
{
if (cv_4thgear.value)
return va("4th Gear! Frantic!");
else
return va("Gear %d - Frantic\n", gamespeed+1);
}
if (cv_4thgear.value)
return va("4th Gear!");