W65816 Disassembler - assign ibuf to null, so it compiles
This commit is contained in:
parent
ed9b7b3eb1
commit
b22a1070a4
|
@ -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)
|
public string Disassemble(uint addr, Func<long, byte> peek, ref byte P, out int length)
|
||||||
{
|
{
|
||||||
byte opcode = peek(addr);
|
byte opcode = peek(addr);
|
||||||
string ibuf;
|
string ibuf = null;
|
||||||
string pbuf;
|
string pbuf;
|
||||||
int offset = -1, sval = -1;
|
int offset = -1, sval = -1;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue