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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user