From b22a1070a4009bf3f7d7ac18ac25ed9d2f1507d9 Mon Sep 17 00:00:00 2001 From: adelikat Date: Sun, 12 Jul 2020 16:06:45 -0500 Subject: [PATCH] W65816 Disassembler - assign ibuf to null, so it compiles --- src/BizHawk.Emulation.Cores/CPUs/W65816/Disassembler.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/BizHawk.Emulation.Cores/CPUs/W65816/Disassembler.cs b/src/BizHawk.Emulation.Cores/CPUs/W65816/Disassembler.cs index 80b9f04854..ee1c760b0c 100644 --- a/src/BizHawk.Emulation.Cores/CPUs/W65816/Disassembler.cs +++ b/src/BizHawk.Emulation.Cores/CPUs/W65816/Disassembler.cs @@ -44,7 +44,7 @@ namespace BizHawk.Emulation.Cores.Components.W65816 public string Disassemble(uint addr, Func peek, ref byte P, out int length) { byte opcode = peek(addr); - string ibuf; + string ibuf = null; string pbuf; int offset = -1, sval = -1;