1
0
mirror of https://github.com/TomHarte/CLK.git synced 2026-04-20 10:17:05 +00:00

Removes audio_queue_.flush() calls; I don't think I really need to block. At least, not usually.

This commit is contained in:
Thomas Harte
2020-01-23 20:13:16 -05:00
parent 428d141bc9
commit 6802318784
4 changed files with 0 additions and 4 deletions
@@ -201,7 +201,6 @@ template<class T> class Cartridge:
update_audio();
update_video();
audio_queue_.perform();
audio_queue_.flush();
}
protected:
-1
View File
@@ -360,7 +360,6 @@ class ConcreteMachine:
vdp_.flush();
update_audio();
audio_queue_.perform();
audio_queue_.flush();
}
float get_confidence() override {
-1
View File
@@ -618,7 +618,6 @@ class ConcreteMachine:
vdp_.flush();
update_audio();
audio_queue_.perform();
audio_queue_.flush();
}
void set_keyboard_line(int line) {
-1
View File
@@ -342,7 +342,6 @@ class ConcreteMachine:
vdp_.flush();
update_audio();
audio_queue_.perform();
audio_queue_.flush();
}
const std::vector<std::unique_ptr<Inputs::Joystick>> &get_joysticks() override {