From 38d24901cfc6f8120110a98cf4898fb2199012a4 Mon Sep 17 00:00:00 2001 From: YoshiRulz Date: Fri, 10 Jul 2020 03:39:02 +1000 Subject: [PATCH] Fix 4-octet peeks by Hex Editor having 2 zeroed octets dumb typo --- .../Base Implementations/MemoryDomain.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/BizHawk.Emulation.Common/Base Implementations/MemoryDomain.cs b/src/BizHawk.Emulation.Common/Base Implementations/MemoryDomain.cs index f4a3653617..15ce64d416 100644 --- a/src/BizHawk.Emulation.Common/Base Implementations/MemoryDomain.cs +++ b/src/BizHawk.Emulation.Common/Base Implementations/MemoryDomain.cs @@ -160,7 +160,7 @@ namespace BizHawk.Emulation.Common } for (var i = 0; i < values.Length; i++, start += 4) - values[i] = PeekUshort(start, bigEndian); + values[i] = PeekUint(start, bigEndian); } public virtual void SendCheatToCore(int addr, byte value, int compare, int compare_type) { }