1
0
mirror of https://github.com/TomHarte/CLK.git synced 2025-11-02 18:16:08 +00:00

Merge branch 'master' into AppleIIgs

This commit is contained in:
Thomas Harte
2021-02-26 21:31:18 -05:00
6 changed files with 77 additions and 26 deletions

View File

@@ -1196,8 +1196,10 @@ void MainWindow::start_macintosh() {
auto target = std::make_unique<Target>();
switch(ui->macintoshModelComboBox->currentIndex()) {
default: target->model = Target::Model::Mac512ke; break;
case 1: target->model = Target::Model::MacPlus; break;
default: target->model = Target::Model::Mac128k; break;
case 1: target->model = Target::Model::Mac512k; break;
case 2: target->model = Target::Model::Mac512ke; break;
case 3: target->model = Target::Model::MacPlus; break;
}
launchTarget(std::move(target));