1
0
mirror of https://github.com/TomHarte/CLK.git synced 2025-11-27 03:18:00 +00:00

Fix Qt speaker delegation.

This commit is contained in:
Thomas Harte
2025-08-30 00:13:47 -04:00
parent 5e48a4c724
commit f1610b6407

View File

@@ -745,7 +745,7 @@ void MainWindow::setAppleIISquarePixels(bool squarePixels) {
configurable->set_options(options);
}
void MainWindow::speaker_did_complete_samples(Outputs::Speaker::Speaker *, const std::vector<int16_t> &buffer) {
void MainWindow::speaker_did_complete_samples(Outputs::Speaker::Speaker &, const std::vector<int16_t> &buffer) {
audioBuffer.write(buffer);
}