W65816 Disassembler - assign ibuf to null, so it compiles

This commit is contained in:
adelikat 2020-07-12 16:06:45 -05:00
parent ed9b7b3eb1
commit b22a1070a4
1 changed files with 1 additions and 1 deletions

View File

@ -44,7 +44,7 @@ namespace BizHawk.Emulation.Cores.Components.W65816
public string Disassemble(uint addr, Func<long, byte> peek, ref byte P, out int length)
{
byte opcode = peek(addr);
string ibuf;
string ibuf = null;
string pbuf;
int offset = -1, sval = -1;