mirror of https://github.com/snes9xgit/snes9x.git
Adjust timing.
This commit is contained in:
parent
c615c42199
commit
ce2a685c89
|
@ -223,7 +223,7 @@ void S9xMainLoop (void)
|
|||
{
|
||||
CPU.WaitingForInterrupt = FALSE;
|
||||
Registers.PCw++;
|
||||
CPU.Cycles += ONE_CYCLE;
|
||||
CPU.Cycles += 14;
|
||||
while (CPU.Cycles >= CPU.NextEvent)
|
||||
S9xDoHEventProcessing();
|
||||
}
|
||||
|
@ -242,7 +242,7 @@ void S9xMainLoop (void)
|
|||
{
|
||||
CPU.WaitingForInterrupt = FALSE;
|
||||
Registers.PCw++;
|
||||
CPU.Cycles += ONE_CYCLE;
|
||||
CPU.Cycles += 14;
|
||||
while (CPU.Cycles >= CPU.NextEvent)
|
||||
S9xDoHEventProcessing();
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue