diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/N64/N64.IMemoryDomains.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/N64/N64.IMemoryDomains.cs index 250a3facde..29ac280585 100644 --- a/BizHawk.Emulation.Cores/Consoles/Nintendo/N64/N64.IMemoryDomains.cs +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/N64/N64.IMemoryDomains.cs @@ -120,17 +120,18 @@ namespace BizHawk.Emulation.Cores.Nintendo.N64 Action pokeByte; peekByte = delegate(int addr) - { - return api.m64p_read_memory_8((uint)addr); - }; - pokeByte = delegate(int addr, byte val) - { - api.m64p_write_memory_8((uint)addr, val); - }; + { + return api.m64p_read_memory_8((uint)addr); + }; + + pokeByte = delegate(int addr, byte val) + { + api.m64p_write_memory_8((uint)addr, val); + }; _memoryDomains.Add(new MemoryDomain ( - name: "Sytem Bus", + name: "System Bus", size: 0, //special case for full 32bit memorydomain endian: MemoryDomain.Endian.Big, peekByte: peekByte,