Small bug fix to get MIDI music to play at correct speed (68K was running at wrong frequency)

This commit is contained in:
Nik Henson 2011-08-07 00:30:52 +00:00
parent 603bd1bb86
commit 466997b318

View file

@ -337,7 +337,7 @@ void SCSP68KIRQCallback(int irqLevel)
// SCSP callback for running the 68K
int SCSP68KRunCallback(int numCycles)
{
return M68KRun(numCycles);
return numCycles - M68KRun(numCycles);
}