Extract constant string `MD5Checksum.Dummy`
This commit is contained in:
parent
6e10064ca4
commit
f7b148250d
|
@ -289,7 +289,7 @@ namespace BizHawk.Client.EmuHawk
|
||||||
return IdentifyHash(Encoding.ASCII.GetString(hash, 0, 32));
|
return IdentifyHash(Encoding.ASCII.GetString(hash, 0, 32));
|
||||||
}
|
}
|
||||||
|
|
||||||
_gameHash ??= "EEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE";
|
_gameHash ??= MD5Checksum.Dummy;
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -16,6 +16,8 @@ namespace BizHawk.Common
|
||||||
|
|
||||||
public const string PREFIX = "MD5";
|
public const string PREFIX = "MD5";
|
||||||
|
|
||||||
|
public /*static readonly*/const string Dummy = "EEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE";
|
||||||
|
|
||||||
public /*static readonly*/const string EmptyFile = "D41D8CD98F00B204E9800998ECF8427E";
|
public /*static readonly*/const string EmptyFile = "D41D8CD98F00B204E9800998ECF8427E";
|
||||||
|
|
||||||
#if NET5_0_OR_GREATER
|
#if NET5_0_OR_GREATER
|
||||||
|
|
Loading…
Reference in New Issue