Warn when binding an archive member whose length is 0

This commit is contained in:
YoshiRulz 2022-02-05 20:50:54 +10:00
parent 55a60ceda7
commit 5424cd3123
No known key found for this signature in database
GPG Key ID: C4DE31C245353FB7
1 changed files with 1 additions and 0 deletions

View File

@ -169,6 +169,7 @@ namespace BizHawk.Common
_boundStream.Position = 0;
ArchiveMemberPath = _archiveItems[index].Name; // TODO - maybe go through our own list of names? maybe not, its indices don't match...
Util.DebugWriteLine($"{nameof(HawkFile)} bound {CanonicalFullPath}");
if (_boundStream.Length is 0) Console.WriteLine("bound file is 0 bytes long?");
BoundIndex = archiveIndex;
return this;
}