1
0
mirror of https://github.com/TomHarte/CLK.git synced 2026-04-24 05:18:36 +00:00

Corrects two lingering adaptation errors in the Vic-20.

This commit is contained in:
Thomas Harte
2017-12-17 21:43:08 -05:00
parent ac80d10cd8
commit f8a2459c91
2 changed files with 7 additions and 4 deletions
+5 -1
View File
@@ -70,7 +70,11 @@ template <class T> class MOS6560 {
}
Outputs::CRT::CRT *get_crt() { return crt_.get(); }
Outputs::Speaker::Speaker *get_speaker() { return nullptr; } // speaker_;
Outputs::Speaker::Speaker *get_speaker() { return &speaker_; }
void set_high_frequency_cutoff(float cutoff) {
speaker_.set_high_frequency_cutoff(cutoff);
}
enum OutputMode {
PAL, NTSC