mirror of https://github.com/snes9xgit/snes9x.git
Increase the number of opcodes executed on the SA1 to 5 per S-CPU opcode.
This commit is contained in:
parent
d03700483c
commit
8d4539a844
|
@ -312,7 +312,7 @@ void S9xSA1MainLoop (void)
|
|||
}
|
||||
}
|
||||
|
||||
for (int i = 0; i < 3 && !(Memory.FillRAM[0x2200] & 0x60); i++)
|
||||
for (int i = 0; i < 5 && !(Memory.FillRAM[0x2200] & 0x60); i++)
|
||||
{
|
||||
#ifdef DEBUGGER
|
||||
if (SA1.Flags & TRACE_FLAG)
|
||||
|
|
Loading…
Reference in New Issue