diff --git a/src/Core/Resource/CStringList.h b/src/Core/Resource/CStringList.h index a16ddfa5..16d5dcda 100644 --- a/src/Core/Resource/CStringList.h +++ b/src/Core/Resource/CStringList.h @@ -21,7 +21,7 @@ public: TString StringByIndex(size_t Index) const { - ASSERT(Index >= 0 && Index < mStringList.size()); + ASSERT(Index < mStringList.size()); return mStringList[Index]; } };