瀏覽代碼

Bug in moving maps. .h3c vs .H3C

krs 2 年之前
父節點
當前提交
fd90653e25
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      lib/filesystem/CArchiveLoader.cpp

+ 1 - 1
lib/filesystem/CArchiveLoader.cpp

@@ -91,7 +91,7 @@ void CArchiveLoader::initLODArchive(const std::string &mountPoint, CFileInputStr
 				extractToFolder("IMAGES", mountPoint, entry);
 			else if ((fName.find(".DEF") != std::string::npos ) || (fName.find(".MSK") != std::string::npos) || (fName.find(".FNT") != std::string::npos) || (fName.find(".PAL") != std::string::npos))
 				extractToFolder("SPRITES", mountPoint, entry);
-			else if ((fName.find(".h3c") != std::string::npos))
+			else if ((fName.find(".H3C") != std::string::npos))
 				extractToFolder("SPRITES", mountPoint, entry);
 			else
 				extractToFolder("MISC", mountPoint, entry);