Made installer asset resolving case insensitive.

This commit is contained in:
IceReaper
2022-11-07 18:34:44 +01:00
committed by Gustas
parent 98e7058486
commit 8ae5383698
21 changed files with 48 additions and 5346 deletions

View File

@@ -223,9 +223,7 @@ namespace OpenRA.FileSystem
{
using (var s = File.OpenRead(filename))
{
var readSignature = s.ReadUInt32();
if (readSignature != ZipSignature)
if (s.ReadUInt32() != ZipSignature)
{
package = null;
return false;