diff --git a/include/pd/lithium/font.hpp b/include/pd/lithium/font.hpp index 573dff1..8c56b8a 100644 --- a/include/pd/lithium/font.hpp +++ b/include/pd/lithium/font.hpp @@ -56,12 +56,6 @@ class PD_API Font { */ void LoadTTF(const std::vector& data, int px_height = 32, LiFontFlags flags = LiFontFlags_None); - /** - * Function that loads a default integrated font... - * This will only work if PD_LI_INCLUDE_FONTS was set - * on lithium build cause otherwise the font data is not included - */ - void LoadDefaultFont(int id = 0, int pixel_height = 32); /** * Getter for Codepoint reference * @return codepoint dataholder reference diff --git a/source/lithium/font.cpp b/source/lithium/font.cpp index 9aaa59a..ba314c7 100644 --- a/source/lithium/font.cpp +++ b/source/lithium/font.cpp @@ -195,8 +195,6 @@ PD_API void Font::LoadTTF(const std::vector& data, int px_height, } } -PD_API void Font::LoadDefaultFont(int id, int pixel_height) {} - PD_API Font::Codepoint& Font::GetCodepoint(u32 c) { if (c < 128) { // Direct Access (~11% improvement)