瀏覽代碼

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;