mirror of
https://github.com/ZDoom/qzdoom.git
synced 2025-01-31 13:00:59 +00:00
Adjust FNF enum to fix FILLZEROS
This commit is contained in:
parent
16333320d0
commit
e8a7f00b9b
2 changed files with 4 additions and 4 deletions
|
@ -2074,8 +2074,8 @@ DEFINE_ACTION_FUNCTION(DBaseStatusBar, GetGlobalACSArrayValue)
|
||||||
|
|
||||||
enum ENumFlags
|
enum ENumFlags
|
||||||
{
|
{
|
||||||
FNF_FILLZEROS,
|
FNF_WHENNOTZERO = 0x1,
|
||||||
FNF_WHENNOTZERO,
|
FNF_FILLZEROS = 0x2,
|
||||||
};
|
};
|
||||||
|
|
||||||
DEFINE_ACTION_FUNCTION(DBaseStatusBar, FormatNumber)
|
DEFINE_ACTION_FUNCTION(DBaseStatusBar, FormatNumber)
|
||||||
|
|
|
@ -254,8 +254,8 @@ class BaseStatusBar native ui
|
||||||
|
|
||||||
enum ENumFlags
|
enum ENumFlags
|
||||||
{
|
{
|
||||||
FNF_FILLZEROS,
|
FNF_WHENNOTZERO = 0x1,
|
||||||
FNF_WHENNOTZERO,
|
FNF_FILLZEROS = 0x2,
|
||||||
}
|
}
|
||||||
|
|
||||||
enum EShade
|
enum EShade
|
||||||
|
|
Loading…
Reference in a new issue