- [Core] fix issue with parsing Texture2D [GI]

This commit is contained in:
Razmoth
2023-09-19 19:06:08 +04:00
parent 8b49dd5868
commit d594f90fec
3 changed files with 7 additions and 6 deletions

View File

@@ -18,7 +18,7 @@ namespace AssetStudio
public string m_NameSpace;
public string m_AsmName;
public bool Match(string hash) => Convert.ToHexString(m_OldTypeHash) == hash;
public bool Match(params string[] hashes) => hashes.Any(x => x == Convert.ToHexString(m_OldTypeHash));
public override string ToString()
{
var sb = new StringBuilder();