mirror of
https://github.com/RetroDECK/Supermodel.git
synced 2024-11-29 09:05:41 +00:00
Fixed mistake in previous commit!
This commit is contained in:
parent
466997b318
commit
416fead447
|
@ -337,7 +337,7 @@ void SCSP68KIRQCallback(int irqLevel)
|
||||||
// SCSP callback for running the 68K
|
// SCSP callback for running the 68K
|
||||||
int SCSP68KRunCallback(int numCycles)
|
int SCSP68KRunCallback(int numCycles)
|
||||||
{
|
{
|
||||||
return numCycles - M68KRun(numCycles);
|
return M68KRun(numCycles) - numCycles;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue