diff --git a/BizHawk.Emulation.Common/Base Implementations/MemoryDomain.cs b/BizHawk.Emulation.Common/Base Implementations/MemoryDomain.cs index 873da2167a..f9a5785f4e 100644 --- a/BizHawk.Emulation.Common/Base Implementations/MemoryDomain.cs +++ b/BizHawk.Emulation.Common/Base Implementations/MemoryDomain.cs @@ -129,14 +129,16 @@ namespace BizHawk.Emulation.Common throw new ArgumentException(); } - if (addresses.EndInclusive - addresses.Start != values.Length) + long start = addresses.Start; + long nAddresses = addresses.EndInclusive - addresses.Start + 1; + if (nAddresses != values.Length) { throw new InvalidOperationException("Invalid length of values array"); } - for (var i = addresses.Start; i < addresses.EndInclusive; i++) + for (var i = 0; i