mirror of
https://github.com/TomHarte/CLK.git
synced 2025-11-03 09:16:11 +00:00
Alphabetise; mark override.
This commit is contained in:
@@ -1195,7 +1195,7 @@ public:
|
|||||||
return options;
|
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());
|
const auto options = dynamic_cast<Options *>(str.get());
|
||||||
set_video_signal_configurable(options->output);
|
set_video_signal_configurable(options->output);
|
||||||
allow_fast_tape_hack_ = options->quick_load;
|
allow_fast_tape_hack_ = options->quick_load;
|
||||||
|
|||||||
@@ -8,9 +8,9 @@
|
|||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
|
#include "Analyser/Static/StaticAnalyser.hpp"
|
||||||
#include "Configurable/Configurable.hpp"
|
#include "Configurable/Configurable.hpp"
|
||||||
#include "Configurable/StandardOptions.hpp"
|
#include "Configurable/StandardOptions.hpp"
|
||||||
#include "Analyser/Static/StaticAnalyser.hpp"
|
|
||||||
#include "Machines/ROMMachine.hpp"
|
#include "Machines/ROMMachine.hpp"
|
||||||
|
|
||||||
#include <memory>
|
#include <memory>
|
||||||
@@ -58,6 +58,7 @@ struct Machine {
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// Provided for running the SHAKER test suite.
|
||||||
struct SSMDelegate {
|
struct SSMDelegate {
|
||||||
virtual void perform(uint16_t) = 0;
|
virtual void perform(uint16_t) = 0;
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user