From c4fa170b9e233e31cd4e155691c32c45b92c3613 Mon Sep 17 00:00:00 2001 From: Isotarge Date: Mon, 9 May 2016 18:42:21 +0930 Subject: [PATCH] Fix crash & memory leak when opening hex editor with the N64 core loaded --- .../Base Implementations/MemoryDomainImpls.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/BizHawk.Emulation.Common/Base Implementations/MemoryDomainImpls.cs b/BizHawk.Emulation.Common/Base Implementations/MemoryDomainImpls.cs index 67a150220f..d660cc4f9d 100644 --- a/BizHawk.Emulation.Common/Base Implementations/MemoryDomainImpls.cs +++ b/BizHawk.Emulation.Common/Base Implementations/MemoryDomainImpls.cs @@ -32,6 +32,7 @@ namespace BizHawk.Emulation.Common _peek = peek; _poke = poke; Writable = poke != null; + WordSize = wordSize; } }