From aa22af6f050df8e3d52ceb1f5e8311ab7e139fcd Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Mon, 26 Nov 2018 22:40:01 -0500 Subject: [PATCH] Corrects regression in VDP type selection. --- Machines/MasterSystem/MasterSystem.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Machines/MasterSystem/MasterSystem.cpp b/Machines/MasterSystem/MasterSystem.cpp index 120ff41f1..689d224c6 100644 --- a/Machines/MasterSystem/MasterSystem.cpp +++ b/Machines/MasterSystem/MasterSystem.cpp @@ -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; } }