Debugger: Fixed SPC debugger not showing the disassembled code

This commit is contained in:
Sour 2020-06-26 21:59:34 -04:00
parent 1f620b2652
commit b671d9f26c

View file

@ -273,8 +273,12 @@ void Disassembler::Disassemble(CpuType cpuType)
maxAddr = _necDspProgramRomSize - 1;
break;
case CpuType::Gameboy:
case CpuType::Spc:
mappings = nullptr;
maxAddr = 0xFFFF;
break;
case CpuType::Gameboy:
if(!_gameboy) {
return;
}