summaryrefslogtreecommitdiff
path: root/src/resources/db
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2017-12-17 23:03:53 +0300
committerAndrei Karas <akaras@inbox.ru>2017-12-17 23:03:53 +0300
commitd5d5c487f97fe5a03b6598f5c41f7e71850ff8b7 (patch)
tree0743bbbce424d9b46398ce22d87cbb7a9fdd3702 /src/resources/db
parente781295eebe67c5000256ea63dd0d54433434aaf (diff)
downloadplus-d5d5c487f97fe5a03b6598f5c41f7e71850ff8b7.tar.gz
plus-d5d5c487f97fe5a03b6598f5c41f7e71850ff8b7.tar.bz2
plus-d5d5c487f97fe5a03b6598f5c41f7e71850ff8b7.tar.xz
plus-d5d5c487f97fe5a03b6598f5c41f7e71850ff8b7.zip
Remove default parameters from emotedb.h
Diffstat (limited to 'src/resources/db')
-rw-r--r--src/resources/db/emotedb.h9
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;