mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-10 23:01:50 +00:00
- allow floats for uniform cvar defaults
This commit is contained in:
parent
751f859c7a
commit
eae2704a9b
1 changed files with 2 additions and 2 deletions
|
@ -1557,9 +1557,9 @@ class GLDefsParser
|
|||
}
|
||||
|
||||
UCVarValue val;
|
||||
sc.MustGetNumber();
|
||||
sc.MustGetFloat();
|
||||
|
||||
val.Float = sc.Number;
|
||||
val.Float = sc.Float;
|
||||
|
||||
// must've picked this up from an autoexec.cfg, handle accordingly
|
||||
if (cvar && ((cvar->GetFlags() & (CVAR_MOD|CVAR_AUTO|CVAR_UNSETTABLE)) == (CVAR_AUTO | CVAR_UNSETTABLE)))
|
||||
|
|
Loading…
Reference in a new issue