소스 검색

Remove exist check for mod prop icon files

Improves performance.
habeebweeb 3 년 전
부모
커밋
4869f7c230
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      COM3D2.MeidoPhotoStudio.Plugin/MeidoPhotoStudio/Constants.cs

+ 1 - 1
COM3D2.MeidoPhotoStudio.Plugin/MeidoPhotoStudio/Constants.cs

@@ -957,7 +957,7 @@ namespace COM3D2.MeidoPhotoStudio.Plugin
                     {
                         Texture2D icon;
                         string iconFile = item.IconFile;
-                        if (string.IsNullOrEmpty(iconFile) || !GameUty.FileSystem.IsExistentFile(iconFile))
+                        if (string.IsNullOrEmpty(iconFile))
                         {
                             Utility.LogWarning($"Could not find icon '{iconFile}' for menu '{item.MenuFile}");
                             return true;