1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-10-01 13:58:20 +00:00

Added an artificial low pass filter, attempting to capture post-digital effects.

This commit is contained in:
Thomas Harte 2017-02-28 21:29:55 -05:00
parent 026b418b4a
commit 893a5dd007

View File

@ -364,6 +364,7 @@ void Machine::crt_did_end_batch_of_frames(Outputs::CRT::CRT *crt, unsigned int n
}
speaker_->set_input_rate((float)(clock_rate / 38.0));
speaker_->set_high_frequency_cut_off((float)(clock_rate / (38.0 * 2.0)));
set_clock_rate(clock_rate);
}
}