Revert "Add a wait for threads when we hand away control. Probably not needed due to all the extra processing during end-of-frame."

This reverts commit e1a4ef93b6.
This commit is contained in:
Brandon Wright 2018-04-13 10:25:25 -05:00
parent f422730808
commit 551e527784
3 changed files with 0 additions and 14 deletions

View File

@ -758,16 +758,6 @@ static inline void S9xAPUUpdateClock (void)
S9xAPUSetReferenceTime(CPU.Cycles);
}
void S9xAPUWait (void)
{
#ifdef USE_THREADS
if (spc::using_threads)
{
S9xAPUThreadWait();
}
#endif
}
uint8 S9xAPUReadPort (int port)
{
#ifdef USE_THREADS

View File

@ -230,6 +230,5 @@ void S9xClearSamples (void);
bool8 S9xMixSamples (uint8 *, int);
void S9xSetSamplesAvailableCallback (apu_callback, void *);
void S9xUpdateDynamicRate (int, int);
void S9xAPUWait (void);
#endif

View File

@ -319,12 +319,9 @@ void S9xMainLoop (void)
#ifdef DEBUGGER
if (!(CPU.Flags & FRAME_ADVANCE_FLAG))
#endif
S9xAPUWait();
S9xSyncSpeed();
CPU.Flags &= ~SCAN_KEYS_FLAG;
}
}
static inline void S9xReschedule (void)