1
0
mirror of https://github.com/TomHarte/CLK.git synced 2025-07-24 22:24:23 +00:00

Implements the proper row counter values for > 192 row modes.

This commit is contained in:
Thomas Harte
2018-10-19 22:37:56 -04:00
parent 3b164e5ffe
commit 0822c96ce0
4 changed files with 32 additions and 22 deletions

View File

@@ -149,7 +149,7 @@ class ConcreteMachine:
vdp_.reset(new TI::TMS::TMS9918(model_ == Target::Model::SG1000 ? TI::TMS::TMS9918A : TI::TMS::SMSVDP));
vdp_->set_tv_standard(
(region_ == Target::Region::Europe) ?
TI::TMS::TMS9918::TVStandard::PAL : TI::TMS::TMS9918::TVStandard::NTSC);
TI::TMS::TVStandard::PAL : TI::TMS::TVStandard::NTSC);
get_crt()->set_video_signal(Outputs::CRT::VideoSignal::Composite);
}