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

Merge pull request #336 from TomHarte/TMSGamma

Sets TMS input gamma.
This commit is contained in:
Thomas Harte 2018-01-13 19:20:32 -08:00 committed by GitHub
commit e12ab8fe2e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -70,6 +70,7 @@ TMS9918::TMS9918(Personality p) {
"}");
crt_->set_output_device(Outputs::CRT::OutputDevice::Monitor);
crt_->set_visible_area(Outputs::CRT::Rect(0.055f, 0.025f, 0.9f, 0.9f));
crt_->set_input_gamma(2.8f);
}
Outputs::CRT::CRT *TMS9918::get_crt() {