[7584] Fixed compiler warning at windows

This commit is contained in:
arrai 2009-03-29 20:57:58 +02:00
parent f38283eba6
commit 884c48d11c
2 changed files with 2 additions and 2 deletions

View file

@ -393,7 +393,7 @@ void LoadDBCStores(const std::string& dataPath)
continue;
// prevent memory corruption; otherwise cls will become 12 below
if (! talentTabInfo->ClassMask & CLASSMASK_ALL_PLAYABLE)
if ((talentTabInfo->ClassMask & CLASSMASK_ALL_PLAYABLE)==0)
continue;
// store class talent tab pages

View file

@ -1,4 +1,4 @@
#ifndef __REVISION_NR_H__
#define __REVISION_NR_H__
#define REVISION_NR "7583"
#define REVISION_NR "7584"
#endif // __REVISION_NR_H__