From 884c48d11c779b02bd5f18acfb46db7d80bc4dbb Mon Sep 17 00:00:00 2001 From: arrai Date: Sun, 29 Mar 2009 20:57:58 +0200 Subject: [PATCH] [7584] Fixed compiler warning at windows --- src/game/DBCStores.cpp | 2 +- src/shared/revision_nr.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/game/DBCStores.cpp b/src/game/DBCStores.cpp index db979644d..983b68690 100644 --- a/src/game/DBCStores.cpp +++ b/src/game/DBCStores.cpp @@ -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 diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index c7621b63f..6a1c8ec87 100644 --- a/src/shared/revision_nr.h +++ b/src/shared/revision_nr.h @@ -1,4 +1,4 @@ #ifndef __REVISION_NR_H__ #define __REVISION_NR_H__ - #define REVISION_NR "7583" + #define REVISION_NR "7584" #endif // __REVISION_NR_H__