From cb3a59aaacbf9ce921b117a6be30a69e3e48b672 Mon Sep 17 00:00:00 2001 From: DarthArgus Date: Wed, 14 Oct 2015 21:13:40 -0500 Subject: [PATCH] fix conversion error --- .../library/sharedGame/src/shared/core/LfgCharacterData.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engine/shared/library/sharedGame/src/shared/core/LfgCharacterData.cpp b/engine/shared/library/sharedGame/src/shared/core/LfgCharacterData.cpp index 21d8d4b5..31a0e655 100644 --- a/engine/shared/library/sharedGame/src/shared/core/LfgCharacterData.cpp +++ b/engine/shared/library/sharedGame/src/shared/core/LfgCharacterData.cpp @@ -616,7 +616,7 @@ Unicode::String const & LfgCharacterData::getProfessionDisplayString(LfgCharacte static Unicode::String empty; - if ((static_cast(profession) >= 0) && (static_cast(profession) < s_professionDisplayString.size())) + if ((static_cast(profession) >= 0) && (static_cast(profession) < s_professionDisplayString.size())) return s_professionDisplayString[static_cast(profession)]; return empty;