1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-17 13:29:02 +00:00

Ensures the Vic-20 doesn't show the ZX80/81 options panel on macOS.

This commit is contained in:
Thomas Harte 2018-03-25 16:04:44 -04:00
parent 39a94874ae
commit 62b0645ed0

View File

@ -39,7 +39,7 @@
case Analyser::Machine::Electron: return @"QuickLoadCompositeOptions";
case Analyser::Machine::MSX: return @"QuickLoadCompositeOptions";
case Analyser::Machine::Oric: return @"OricOptions";
case Analyser::Machine::Vic20: nil; //return @"Vic20Options";
case Analyser::Machine::Vic20: return nil; //return @"Vic20Options";
case Analyser::Machine::ZX8081: return @"ZX8081Options";
default: return nil;
}