diff options
Diffstat (limited to 'src/resources/emotedb.h')
-rw-r--r-- | src/resources/emotedb.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/resources/emotedb.h b/src/resources/emotedb.h index 847f3f0ee..50742d7b5 100644 --- a/src/resources/emotedb.h +++ b/src/resources/emotedb.h @@ -53,13 +53,14 @@ namespace EmoteDB void unload(); - const EmoteInfo *get(int id, bool allowNull = false); + const EmoteInfo *get(const int id, const bool allowNull = false); - const AnimatedSprite *getAnimation(int id, bool allowNull = false); + const AnimatedSprite *getAnimation(const int id, + const bool allowNull = false); - const AnimatedSprite *getAnimation2(int id, bool allowNull = false); + const AnimatedSprite *getAnimation2(int id, const bool allowNull = false); - const EmoteSprite *getSprite(int id, bool allowNull = false); + const EmoteSprite *getSprite(const int id, const bool allowNull = false); const int &getLast(); |