diff options
author | megamage <none@none> | 2009-03-29 17:21:48 -0600 |
---|---|---|
committer | megamage <none@none> | 2009-03-29 17:21:48 -0600 |
commit | d332c7225ba71d7ba404e2a7eaf2cb41f0c8ec05 (patch) | |
tree | 29b518edabf033d8def0b556fc4de67f110c6ab9 /src | |
parent | 7668b6aae6c9d67395f599681c61225a0daafd19 (diff) |
[7584] Fixed compiler warning at windows Author: arrai
--HG--
branch : trunk
Diffstat (limited to 'src')
-rw-r--r-- | src/game/DBCStores.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/DBCStores.cpp b/src/game/DBCStores.cpp index 322ffca5d20..747ff0f86cb 100644 --- a/src/game/DBCStores.cpp +++ b/src/game/DBCStores.cpp @@ -395,7 +395,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 |