mirror of
https://github.com/ZDoom/gzdoom.git
synced 2025-04-04 00:41:59 +00:00
- am_overlay turns off the overlay when set to zero
This commit is contained in:
parent
c7bba2a126
commit
178896d6fb
1 changed files with 9 additions and 1 deletions
|
@ -156,7 +156,15 @@ CUSTOM_CVAR(Int, am_cheat, 0, 0)
|
|||
|
||||
|
||||
CVAR(Int, am_rotate, 0, CVAR_ARCHIVE);
|
||||
CVAR(Int, am_overlay, 0, CVAR_ARCHIVE);
|
||||
CUSTOM_CVAR(Int, am_overlay, 0, CVAR_ARCHIVE)
|
||||
{
|
||||
// stop overlay if we're told not to use it anymore.
|
||||
if (automapactive && viewactive && (self == 0))
|
||||
{
|
||||
automapactive = false;
|
||||
viewactive = true;
|
||||
}
|
||||
}
|
||||
CVAR(Bool, am_showsecrets, true, CVAR_ARCHIVE);
|
||||
CVAR(Bool, am_showmonsters, true, CVAR_ARCHIVE);
|
||||
CVAR(Bool, am_showitems, false, CVAR_ARCHIVE);
|
||||
|
|
Loading…
Reference in a new issue