Extract constant string `MD5Checksum.Dummy`

This commit is contained in:
YoshiRulz 2025-05-11 00:34:22 +10:00
parent 6e10064ca4
commit f7b148250d
No known key found for this signature in database
GPG Key ID: C4DE31C245353FB7
2 changed files with 3 additions and 1 deletions

View File

@ -289,7 +289,7 @@ namespace BizHawk.Client.EmuHawk
return IdentifyHash(Encoding.ASCII.GetString(hash, 0, 32));
}
_gameHash ??= "EEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE";
_gameHash ??= MD5Checksum.Dummy;
return 0;
}

View File

@ -16,6 +16,8 @@ namespace BizHawk.Common
public const string PREFIX = "MD5";
public /*static readonly*/const string Dummy = "EEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE";
public /*static readonly*/const string EmptyFile = "D41D8CD98F00B204E9800998ECF8427E";
#if NET5_0_OR_GREATER