mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-10 04:22:20 +02:00
Added float format flags
This commit is contained in:
parent
82a108714d
commit
271d88f261
7 changed files with 146 additions and 79 deletions
|
@ -86,6 +86,16 @@ enum DwIntDisplayType : int8
|
|||
DwIntDisplayType_HexadecimalLower,
|
||||
};
|
||||
|
||||
enum DwFloatDisplayType : int8
|
||||
{
|
||||
DwFloatDisplayType_Default,
|
||||
DwFloatDisplayType_Minimal,
|
||||
DwFloatDisplayType_Full,
|
||||
DwFloatDisplayType_HexUpper,
|
||||
|
||||
DwFloatDisplayType_HexLower,
|
||||
};
|
||||
|
||||
enum DwMmDisplayType : int8
|
||||
{
|
||||
DwMmDisplayType_Default,
|
||||
|
@ -116,11 +126,13 @@ struct DwDisplayInfo
|
|||
{
|
||||
DwIntDisplayType mIntDisplayType;
|
||||
DwMmDisplayType mMmDisplayType;
|
||||
DwFloatDisplayType mFloatDisplayType;
|
||||
|
||||
DwDisplayInfo()
|
||||
{
|
||||
mIntDisplayType = DwIntDisplayType_Default;
|
||||
mMmDisplayType = DwMmDisplayType_Default;
|
||||
mFloatDisplayType = DwFloatDisplayType_Default;
|
||||
}
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue