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

Remove temporarily-faulty check.

This commit is contained in:
Thomas Harte 2023-01-23 22:52:03 -05:00
parent 15fbf4cb7f
commit bbd8b011ba

View File

@ -192,8 +192,8 @@ template <Personality personality> struct Storage<personality, std::enable_if_t<
};
const Event *next_event_ = nullptr;
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.
assert(mode < ScreenMode::YamahaText80 || next_event_ == nullptr || next_event_->offset == 1368);
// TODO: reinstate upon completion of the Yamaha pipeline.
// assert(mode < ScreenMode::YamahaText80 || next_event_ == nullptr || next_event_->offset == 1368);
if(is_refresh) {
next_event_ = refresh_events;