diff options
Diffstat (limited to 'Userland/Libraries/LibGfx/BitmapFont.h')
-rw-r--r-- | Userland/Libraries/LibGfx/BitmapFont.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibGfx/BitmapFont.h b/Userland/Libraries/LibGfx/BitmapFont.h index c62807a4ad..4fab8edc27 100644 --- a/Userland/Libraries/LibGfx/BitmapFont.h +++ b/Userland/Libraries/LibGfx/BitmapFont.h @@ -107,7 +107,7 @@ public: m_glyph_widths[ch] = width; } - int glyph_count() const { return m_glyph_count; } + size_t glyph_count() const { return m_glyph_count; } FontTypes type() { return m_type; } void set_type(FontTypes type); |