mirror of
https://github.com/godotengine/godot
synced 2024-11-02 12:55:22 +00:00
Fixed undefined setting values when loading dynamic fonts
This commit is contained in:
parent
869887641f
commit
9418f6a557
1 changed files with 3 additions and 2 deletions
|
@ -54,8 +54,9 @@ public:
|
|||
struct {
|
||||
uint32_t size : 16;
|
||||
uint32_t outline_size : 8;
|
||||
bool mipmaps : 1;
|
||||
bool filter : 1;
|
||||
uint32_t mipmaps : 1;
|
||||
uint32_t filter : 1;
|
||||
uint32_t unused : 6;
|
||||
};
|
||||
uint32_t key;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue