mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-10 23:01:50 +00:00
Increased limit for automap empty space margin to 90%
https://forum.zdoom.org/viewtopic.php?t=58653
This commit is contained in:
parent
f3ac82e112
commit
de12902d77
2 changed files with 3 additions and 3 deletions
|
@ -104,9 +104,9 @@ CUSTOM_CVAR (Int, am_emptyspacemargin, 0, CVAR_ARCHIVE)
|
|||
{
|
||||
self = 0;
|
||||
}
|
||||
else if (self > 50)
|
||||
else if (self > 90)
|
||||
{
|
||||
self = 50;
|
||||
self = 90;
|
||||
}
|
||||
|
||||
AM_NewResolution();
|
||||
|
|
|
@ -1091,7 +1091,7 @@ OptionMenu AutomapOptions protected
|
|||
Option "$AUTOMAPMNU_TEXTURED", "am_textured", "OnOff"
|
||||
Option "$AUTOMAPMNU_FOLLOW", "am_followplayer", "OnOff"
|
||||
Option "$AUTOMAPMNU_PTOVERLAY", "am_portaloverlay", "OnOff"
|
||||
Slider "$AUTOMAPMNU_EMPTYSPACEMARGIN", "am_emptyspacemargin", 0, 50, 5, 0
|
||||
Slider "$AUTOMAPMNU_EMPTYSPACEMARGIN", "am_emptyspacemargin", 0, 90, 5, 0
|
||||
StaticText " "
|
||||
Option "$AUTOMAPMNU_SHOWITEMS", "am_showitems", "OnOff"
|
||||
Option "$AUTOMAPMNU_SHOWMONSTERS", "am_showmonsters", "OnOff"
|
||||
|
|
Loading…
Reference in a new issue