From e158c5bc301eeb18408be746b7b5eeaf6e687bca Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Tue, 31 Dec 2024 20:33:27 -0500 Subject: [PATCH] Extend shifting to final column of screen. --- Machines/Commodore/Plus4/Video.hpp | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Machines/Commodore/Plus4/Video.hpp b/Machines/Commodore/Plus4/Video.hpp index 09e233794..8f1592a2f 100644 --- a/Machines/Commodore/Plus4/Video.hpp +++ b/Machines/Commodore/Plus4/Video.hpp @@ -281,7 +281,7 @@ public: } break; } - if(video_shift_) { + if(video_shift_ || wide_screen_) { next_attribute_.advance(); next_character_.advance(); next_cursor_.advance(); @@ -487,6 +487,11 @@ public: } } +// template +// void draw_standard_character_mode() { +// +// } + void set_scan_target(Outputs::Display::ScanTarget *const target) { crt_.set_scan_target(target); }