1
0
mirror of https://github.com/TomHarte/CLK.git synced 2025-07-29 08:24:28 +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() {