1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-05 10:28:58 +00:00

Corrects regression in VDP type selection.

This commit is contained in:
Thomas Harte 2018-11-26 22:40:01 -05:00
parent a6383247fc
commit aa22af6f05

View File

@ -385,7 +385,7 @@ class ConcreteMachine:
switch(model) {
case Target::Model::SG1000: return TI::TMS::TMS9918A;
case Target::Model::MasterSystem: return TI::TMS::SMSVDP;
case Target::Model::MasterSystem2: return TI::TMS::SMSVDP;
case Target::Model::MasterSystem2: return TI::TMS::SMS2VDP;
}
}