Fix compiling on ancient compilers, and add a global.json which restricts bizhawk to ancient compilers

This commit is contained in:
nattthebear 2020-07-12 17:24:12 -04:00
parent 570f17cedd
commit 5a1b5915bf
2 changed files with 8 additions and 2 deletions

6
global.json Normal file
View File

@ -0,0 +1,6 @@
{
"sdk": {
"version": "3.1.100",
"rollForward": "latestFeature"
}
}

View File

@ -44,8 +44,8 @@ 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 pbuf;
string ibuf = null;
string pbuf = null;
int offset = -1, sval = -1;
bool tsrc_2 = false;