DSPCore: Use std::array to represent ifx_regs

This commit is contained in:
Lioncash
2015-10-01 10:26:16 -04:00
parent 696d6eae09
commit ccc3cd884e
3 changed files with 3 additions and 6 deletions

View File

@@ -21,10 +21,7 @@ static void gdsp_do_dma();
void gdsp_ifx_init()
{
for (int i = 0; i < 256; i++)
{
g_dsp.ifx_regs[i] = 0;
}
g_dsp.ifx_regs.fill(0);
g_dsp.mbox[0].store(0);
g_dsp.mbox[1].store(0);