1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-06-09 01:29:44 +00:00

Add overt flushes to the SDL target.

This commit is contained in:
Thomas Harte 2022-07-12 11:03:58 -04:00
parent 59da143e6a
commit a0e01d4c34

View File

@ -31,6 +31,7 @@ void Timer::tick() {
std::lock_guard lock_guard(*machineMutex);
machine->run_for(double(duration) / 1e9);
machine->flush_output(MachineTypes::TimedMachine::Output::All);
}
Timer::~Timer() {