mirror of
https://github.com/fabiangreffrath/woof.git
synced 2025-09-22 03:12:00 -04:00
fix initial min/max automap zoom factor
This commit is contained in:
parent
6c3ccff887
commit
fee654487b
@ -631,7 +631,11 @@ static void AM_LevelInit(void)
|
||||
}
|
||||
|
||||
if (scale_mtof > max_scale_mtof)
|
||||
scale_mtof = max_scale_mtof;
|
||||
|
||||
if (scale_mtof < min_scale_mtof)
|
||||
scale_mtof = min_scale_mtof;
|
||||
|
||||
scale_ftom = FixedDiv(FRACUNIT, scale_mtof);
|
||||
|
||||
// [crispy] Precalculate color lookup tables for antialised line drawing using COLORMAP
|
||||
|
Loading…
x
Reference in New Issue
Block a user