Add SPU decoder mode selection to GUI/Config

This commit is contained in:
darkf 2014-04-23 04:59:14 -07:00
parent 0d7e45639a
commit 090f7f8cfb
4 changed files with 30 additions and 14 deletions

View file

@ -150,9 +150,15 @@ void PPUThread::DoRun()
case 1:
case 2:
{
auto ppui = new PPUInterpreter(*this);
m_dec = new PPUDecoder(ppui);
}
break;
default:
ConLog.Error("Invalid CPU decoder mode: %d", Ini.CPUDecoderMode.GetValue());
Emu.Pause();
}
}