1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-06 01:28:57 +00:00

Adds a low-pass filter, picked entirely by ear, and switches to composite output, at least for now.

This commit is contained in:
Thomas Harte 2018-10-07 18:39:03 -04:00
parent 3bead07043
commit 24644f1dd1

View File

@ -122,6 +122,8 @@ class ConcreteMachine:
map(read_pointers_, ram_, 1024, 0xc000, 0x10000);
map(write_pointers_, ram_, 1024, 0xc000, 0x10000);
}
speaker_.set_high_frequency_cutoff(8000);
}
~ConcreteMachine() {
@ -130,7 +132,7 @@ class ConcreteMachine:
void setup_output(float aspect_ratio) override {
vdp_.reset(new TI::TMS::TMS9918(model_ == Analyser::Static::Sega::Target::Model::SG1000 ? TI::TMS::TMS9918A : TI::TMS::SMSVDP));
// get_crt()->set_video_signal(Outputs::CRT::VideoSignal::Composite);
get_crt()->set_video_signal(Outputs::CRT::VideoSignal::Composite);
}
void close_output() override {