1
0
mirror of https://github.com/TomHarte/CLK.git synced 2026-01-23 16:16:16 +00:00

Kills setup_output definitively, saving some indirection. set_scan_target takes its place.

This commit is contained in:
Thomas Harte
2018-11-14 21:52:57 -05:00
parent 87df8b9e85
commit 8a699b6072
23 changed files with 122 additions and 94 deletions

View File

@@ -161,7 +161,7 @@ class ConcreteMachine:
audio_queue_.flush();
}
void setup_output(Outputs::Display::ScanTarget *scan_target) override {
void set_scan_target(Outputs::Display::ScanTarget *scan_target) override {
TI::TMS::Personality personality = TI::TMS::TMS9918A;
switch(model_) {
case Target::Model::SG1000: personality = TI::TMS::TMS9918A; break;