diff options
-rw-r--r-- | src/resources/db/emotedb.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/resources/db/emotedb.h b/src/resources/db/emotedb.h index 6d5420b51..eea79fca5 100644 --- a/src/resources/db/emotedb.h +++ b/src/resources/db/emotedb.h @@ -51,12 +51,13 @@ namespace EmoteDB void unload(); const EmoteInfo *get(const int id, - const bool allowNull = false) A_WARN_UNUSED; + const bool allowNull) A_WARN_UNUSED; - const EmoteInfo *get2(int id, const bool allowNull = false) A_WARN_UNUSED; + const EmoteInfo *get2(int id, + const bool allowNull) A_WARN_UNUSED; - const EmoteSprite *getSprite(const int id, const bool allowNull = false) - A_WARN_UNUSED; + const EmoteSprite *getSprite(const int id, + const bool allowNull) A_WARN_UNUSED; const int &getLast() A_CONST A_WARN_UNUSED; |