From f821b604302a7bdd48480b13770a7cc11c672fd6 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Tue, 16 May 2023 16:16:10 -0400 Subject: [PATCH] Remove stray space. --- Components/9918/Implementation/9918.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Components/9918/Implementation/9918.cpp b/Components/9918/Implementation/9918.cpp index dd8a0ec85..ad959ad5b 100644 --- a/Components/9918/Implementation/9918.cpp +++ b/Components/9918/Implementation/9918.cpp @@ -590,7 +590,7 @@ void TMS9918::run_for(const HalfCycles cycles) { if(this->pixel_target_) { if constexpr (is_yamaha_vdp(personality)) { - draw(draw_yamaha(0, relative_start, relative_end), Clock::Internal); // TODO: what is the correct 'y'? + draw(draw_yamaha(0, relative_start, relative_end), Clock::Internal); // TODO: what is the correct 'y'? } else { switch(this->draw_line_buffer_->fetch_mode) { case FetchMode::SMS: draw(draw_sms(relative_start, relative_end, cram_value), Clock::TMSPixel); break;