mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-21 21:33:54 +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:
parent
428d141bc9
commit
6802318784
@ -201,7 +201,6 @@ template<class T> class Cartridge:
|
||||
update_audio();
|
||||
update_video();
|
||||
audio_queue_.perform();
|
||||
audio_queue_.flush();
|
||||
}
|
||||
|
||||
protected:
|
||||
|
@ -360,7 +360,6 @@ class ConcreteMachine:
|
||||
vdp_.flush();
|
||||
update_audio();
|
||||
audio_queue_.perform();
|
||||
audio_queue_.flush();
|
||||
}
|
||||
|
||||
float get_confidence() override {
|
||||
|
@ -618,7 +618,6 @@ class ConcreteMachine:
|
||||
vdp_.flush();
|
||||
update_audio();
|
||||
audio_queue_.perform();
|
||||
audio_queue_.flush();
|
||||
}
|
||||
|
||||
void set_keyboard_line(int line) {
|
||||
|
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user