diff --git a/src/BizHawk.Common/HawkFile/HawkFile.cs b/src/BizHawk.Common/HawkFile/HawkFile.cs index ee2a6d3838..fd772a900e 100644 --- a/src/BizHawk.Common/HawkFile/HawkFile.cs +++ b/src/BizHawk.Common/HawkFile/HawkFile.cs @@ -272,9 +272,14 @@ namespace BizHawk.Common public Stream GetStream() => _boundStream ?? throw new InvalidOperationException($"{nameof(HawkFile)}: Can't call {nameof(GetStream)}() before you've successfully bound something!"); /// attempts to read all the content from the file - public byte[] ReadAllBytes() + /// + /// unlike , + /// DOES seek to beginning unless is + /// + public byte[] ReadAllBytes(bool fromStart = true) { var stream = GetStream(); + if (fromStart) stream.Position = 0L; using var ms = new MemoryStream((int) stream.Length); stream.CopyTo(ms); return ms.GetBuffer();