Fix appveyor build error by removing use of C#7 features.

This commit is contained in:
upthorn 2019-01-04 14:25:24 -08:00
parent c8f826ada3
commit 8a9e8ceed2
1 changed files with 2 additions and 1 deletions

View File

@ -97,7 +97,8 @@ namespace BizHawk.Client.ApiHawk
domain = MemoryDomains[name]; domain = MemoryDomains[name];
} }
var d = DisassemblableCore.Disassemble(domain, pc, out int l); int l;
var d = DisassemblableCore.Disassemble(domain, pc, out l);
return new { disasm = d, length = l }; return new { disasm = d, length = l };
} }
catch (NotImplementedException) catch (NotImplementedException)