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

Alphabetise; mark override.

This commit is contained in:
Thomas Harte
2025-10-29 17:43:05 -04:00
parent 3427120b3f
commit e19bd0d517
2 changed files with 3 additions and 2 deletions

View File

@@ -1195,7 +1195,7 @@ public:
return options;
}
void set_options(const std::unique_ptr<Reflection::Struct> &str) {
void set_options(const std::unique_ptr<Reflection::Struct> &str) final {
const auto options = dynamic_cast<Options *>(str.get());
set_video_signal_configurable(options->output);
allow_fast_tape_hack_ = options->quick_load;

View File

@@ -8,9 +8,9 @@
#pragma once
#include "Analyser/Static/StaticAnalyser.hpp"
#include "Configurable/Configurable.hpp"
#include "Configurable/StandardOptions.hpp"
#include "Analyser/Static/StaticAnalyser.hpp"
#include "Machines/ROMMachine.hpp"
#include <memory>
@@ -58,6 +58,7 @@ struct Machine {
}
};
// Provided for running the SHAKER test suite.
struct SSMDelegate {
virtual void perform(uint16_t) = 0;
};