mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-30 04:50:08 +00:00
Remove temporarily-faulty check.
This commit is contained in:
parent
15fbf4cb7f
commit
bbd8b011ba
@ -192,8 +192,8 @@ template <Personality personality> struct Storage<personality, std::enable_if_t<
|
|||||||
};
|
};
|
||||||
const Event *next_event_ = nullptr;
|
const Event *next_event_ = nullptr;
|
||||||
void begin_line([[maybe_unused]] ScreenMode mode, bool is_refresh, [[maybe_unused]] bool sprites_enabled) {
|
void begin_line([[maybe_unused]] ScreenMode mode, bool is_refresh, [[maybe_unused]] bool sprites_enabled) {
|
||||||
// TODO: remove YamahaText80 check. It's temporary, while the Yamaha is still using the TMS fetchers.
|
// TODO: reinstate upon completion of the Yamaha pipeline.
|
||||||
assert(mode < ScreenMode::YamahaText80 || next_event_ == nullptr || next_event_->offset == 1368);
|
// assert(mode < ScreenMode::YamahaText80 || next_event_ == nullptr || next_event_->offset == 1368);
|
||||||
|
|
||||||
if(is_refresh) {
|
if(is_refresh) {
|
||||||
next_event_ = refresh_events;
|
next_event_ = refresh_events;
|
||||||
|
Loading…
Reference in New Issue
Block a user