diff options
Diffstat (limited to 'src/gui/shortcut/emoteshortcut.h')
-rw-r--r-- | src/gui/shortcut/emoteshortcut.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/gui/shortcut/emoteshortcut.h b/src/gui/shortcut/emoteshortcut.h index 282f12943..2ecc2c1b7 100644 --- a/src/gui/shortcut/emoteshortcut.h +++ b/src/gui/shortcut/emoteshortcut.h @@ -24,6 +24,8 @@ #include "const/emoteshortcut.h" +#include "utils/cast.h" + #include "localconsts.h" /** @@ -105,7 +107,7 @@ class EmoteShortcut final * Remove a Emote from the shortcut. */ void removeEmote(const size_t index) - { if (index < SHORTCUT_EMOTES) mEmotes[index] = 0; } + { if (index < CAST_SIZE(SHORTCUT_EMOTES)) mEmotes[index] = 0; } /** * Try to use the Emote specified by the index. |