Replace strcmp with c++ equivalent when comparing std::strings.

This commit is contained in:
Tobias Loose
2013-11-18 09:52:20 +01:00
parent 89206b3a6b
commit f68568cc1e
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -293,7 +293,7 @@ void MTGPacks::loadAll()
sprintf(myFilename, "packs/%s",relative.c_str());
if (relative[0] == '.')
continue;
if (!strcmp(relative.c_str(), "default_booster.txt"))
if (relative == "default_booster.txt")
continue;
MTGPack * p = NEW MTGPack(myFilename);
if (!p->isValid())