summaryrefslogtreecommitdiff
path: root/src/gui/fonts/font.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/fonts/font.h')
-rw-r--r--src/gui/fonts/font.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/gui/fonts/font.h b/src/gui/fonts/font.h
index de35570e2..2a3131fa3 100644
--- a/src/gui/fonts/font.h
+++ b/src/gui/fonts/font.h
@@ -120,10 +120,10 @@ class Font final
void slowLogic(const int rnd) restrict2;
- int getCreateCounter() const restrict2 noexcept A_WARN_UNUSED
+ unsigned int getCreateCounter() const restrict2 noexcept A_WARN_UNUSED
{ return mCreateCounter; }
- int getDeleteCounter() const restrict2 noexcept A_WARN_UNUSED
+ unsigned int getDeleteCounter() const restrict2 noexcept A_WARN_UNUSED
{ return mDeleteCounter; }
int getStringIndexAt(const std::string &restrict text,
@@ -140,8 +140,8 @@ class Font final
const int size);
TTF_Font *restrict mFont;
- unsigned mCreateCounter;
- unsigned mDeleteCounter;
+ unsigned int mCreateCounter;
+ unsigned int mDeleteCounter;
// Word surfaces cache
int mCleanTime;