mirror of
https://github.com/RetroDECK/Supermodel.git
synced 2025-02-16 17:35:39 +00:00
Small bug fix to get MIDI music to play at correct speed (68K was running at wrong frequency)
This commit is contained in:
parent
603bd1bb86
commit
466997b318
|
@ -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);
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue