This commit is contained in:
miku-666
2022-08-27 12:08:05 +02:00
2 changed files with 3 additions and 3 deletions

View File

@@ -67,7 +67,7 @@ namespace PckStudio.Classes.Utils
_ANIM = anim;
}
public override string ToString() => "0x" + _ANIM.ToString("x");
public override string ToString() => "0x" + ((int)_ANIM).ToString("x8");
public static bool IsValidANIM(string anim) => animRegex.IsMatch(anim);

View File

@@ -33,6 +33,6 @@ using System.Security.Permissions;
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("6.5.0.0")]
[assembly: AssemblyFileVersion("6.5.0.0")]
[assembly: AssemblyVersion("7.0")]
[assembly: AssemblyFileVersion("7.0")]
[assembly: NeutralResourcesLanguage("")]