would have sucked to not find that bug

This commit is contained in:
goyuken 2014-05-31 20:34:13 +00:00
parent e43dcbb5b2
commit 512dc84334
1 changed files with 1 additions and 4 deletions

View File

@ -36,13 +36,10 @@ namespace BizHawk.Emulation.Cores.Nintendo.Gameboy
{
L.SetCpuRegister(register.Replace("Left ", ""), value);
}
else if (register.StartsWith("Right "))
{
L.SetCpuRegister(register.Replace("Right ", ""), value);
R.SetCpuRegister(register.Replace("Right ", ""), value);
}
throw new InvalidOperationException();
}
Gameboy L;