diff options
Diffstat (limited to 'Runtime/Scripting/GUI/Font.bind.cpp')
-rw-r--r-- | Runtime/Scripting/GUI/Font.bind.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Runtime/Scripting/GUI/Font.bind.cpp b/Runtime/Scripting/GUI/Font.bind.cpp index 2d01925..7172027 100644 --- a/Runtime/Scripting/GUI/Font.bind.cpp +++ b/Runtime/Scripting/GUI/Font.bind.cpp @@ -7,10 +7,10 @@ #include "Runtime/Utilities/StaticInitiator.h"
#include "Runtime/GUI/UITextMesh.h"
-static std::vector<character::Codepoint>* s_Codepoints;
+static std::vector<character::Unicode>* s_Codepoints;
InitializeStaticVariables([](){
- s_Codepoints = new std::vector<character::Codepoint>();
+ s_Codepoints = new std::vector<character::Unicode>();
});
LUA_BIND_REGISTRY(Font) |