Correct ROM load limit

This commit is contained in:
Adrian Conlon
2024-06-01 22:11:13 +01:00
parent 80ba7ef0da
commit 098c888dae

View File

@@ -43,7 +43,7 @@ namespace EightBit
file.Seek(readOffset, SeekOrigin.Begin);
using (var reader = new BinaryReader(file))
{
reader.Read(output, writeOffset, extent);
reader.Read(output, writeOffset, limit);
}
return size;