Compare commits

..

No commits in common. "53a0f959f58cf2392024c702789724dd1246b775" and "edf63faf2ab50ad39a97e54fff75666bb49dbfc8" have entirely different histories.

2 changed files with 2 additions and 2 deletions

View File

@ -26,7 +26,7 @@ namespace QFramework
{
var resSearchRule = SafeObjectPool<ResSearchKeys>.Instance.Allocate();
if (assetName.Contains("NetImage:") ||
if (assetName.Contains("netimage:") ||
assetName.Contains("localimage:") ||
assetName.Contains("localaudio:") ||
assetName.Contains("localtext:") ||

View File

@ -32,7 +32,7 @@ namespace QFramework
{
public static string ToLocalImageResName(this string selfFilePath)
{
return string.Format("localimage:{0}", selfFilePath);
return string.Format("LocalImage:{0}", selfFilePath);
}
}