mirror of
https://github.com/mangosfour/server.git
synced 2025-12-15 10:37:02 +00:00
[7584] Fixed compiler warning at windows
This commit is contained in:
parent
f38283eba6
commit
884c48d11c
2 changed files with 2 additions and 2 deletions
|
|
@ -393,7 +393,7 @@ void LoadDBCStores(const std::string& dataPath)
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
// prevent memory corruption; otherwise cls will become 12 below
|
// prevent memory corruption; otherwise cls will become 12 below
|
||||||
if (! talentTabInfo->ClassMask & CLASSMASK_ALL_PLAYABLE)
|
if ((talentTabInfo->ClassMask & CLASSMASK_ALL_PLAYABLE)==0)
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
// store class talent tab pages
|
// store class talent tab pages
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
#ifndef __REVISION_NR_H__
|
#ifndef __REVISION_NR_H__
|
||||||
#define __REVISION_NR_H__
|
#define __REVISION_NR_H__
|
||||||
#define REVISION_NR "7583"
|
#define REVISION_NR "7584"
|
||||||
#endif // __REVISION_NR_H__
|
#endif // __REVISION_NR_H__
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue