Skip to content

Commit

Permalink
Fixed undefined setting values when loading dynamic fonts
Browse files Browse the repository at this point in the history
  • Loading branch information
pouleyKetchoupp committed Feb 12, 2019
1 parent 8698876 commit 9418f6a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions scene/resources/dynamic_font.h
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,9 @@ class DynamicFontData : public Resource {
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;
};
Expand Down

0 comments on commit 9418f6a

Please sign in to comment.