diff options
author | Haru <haru@dotalux.com> | 2016-02-23 04:08:15 +0100 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2016-02-23 04:08:15 +0100 |
commit | 53996663c46f662157beb7c9af7f904a5c5bb01e (patch) | |
tree | ffd693d26f80e0b79db7e34ed0094c7adaacacc5 /src/map/itemdb.h | |
parent | 91524e90f861275c6a1ee4d9e37b6b047b60df58 (diff) | |
download | hercules-53996663c46f662157beb7c9af7f904a5c5bb01e.tar.gz hercules-53996663c46f662157beb7c9af7f904a5c5bb01e.tar.bz2 hercules-53996663c46f662157beb7c9af7f904a5c5bb01e.tar.xz hercules-53996663c46f662157beb7c9af7f904a5c5bb01e.zip |
Corrected some warnings in Visual Studio
- Changed literal 1L values used in unit64 bit-shift operations to 1ULL.
- Follow-up to f606519c3b611573ade246ec82db26437bf03668 (reported by
zackdreaver)
Signed-off-by: Haru <haru@dotalux.com>
Diffstat (limited to 'src/map/itemdb.h')
-rw-r--r-- | src/map/itemdb.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/itemdb.h b/src/map/itemdb.h index 3834b1954..23a4bb1ca 100644 --- a/src/map/itemdb.h +++ b/src/map/itemdb.h @@ -608,7 +608,7 @@ struct itemdb_interface { int (*searchname_array_sub) (DBKey key, DBData data, va_list ap); int (*searchrandomid) (struct item_group *group); const char* (*typename) (int type); - void (*jobmask2mapid) (uint64 *bclass, int64 jobmask); + void (*jobmask2mapid) (uint64 *bclass, uint64 jobmask); void (*jobid2mapid) (uint64 *bclass, int job_id, bool enable); void (*create_dummy_data) (void); struct item_data* (*create_item_data) (int nameid); |