Increased limit for automap empty space margin to 90%

https://forum.zdoom.org/viewtopic.php?t=58653
This commit is contained in:
alexey.lysiuk 2017-12-14 16:17:55 +02:00
commit de12902d77
2 changed files with 3 additions and 3 deletions

View file

@ -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();