1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-11-26 08:49:37 +00:00

The Atari ST doesn't offer quick loading.

This commit is contained in:
Thomas Harte 2020-03-01 22:10:41 -05:00
parent 90e6bef6d7
commit b2c07b3110

View File

@ -44,7 +44,7 @@ namespace ST {
std::vector<std::unique_ptr<Configurable::Option>> get_options() { std::vector<std::unique_ptr<Configurable::Option>> get_options() {
return Configurable::standard_options( return Configurable::standard_options(
static_cast<Configurable::StandardOptions>(Configurable::DisplayRGB | Configurable::DisplayCompositeColour | Configurable::QuickLoadTape) static_cast<Configurable::StandardOptions>(Configurable::DisplayRGB | Configurable::DisplayCompositeColour)
); );
} }