mirror of
https://github.com/TomHarte/CLK.git
synced 2025-08-08 14:25:05 +00:00
Resolves attempt to output graphics on the line one before the display.
This commit is contained in:
@@ -307,7 +307,7 @@ void TMS9918::run_for(const HalfCycles cycles) {
|
|||||||
}\
|
}\
|
||||||
}
|
}
|
||||||
|
|
||||||
if(line_buffer.line_mode == LineMode::Refresh) {
|
if(line_buffer.line_mode == LineMode::Refresh || read_pointer_.row > mode_timing_.pixel_lines) {
|
||||||
if(read_pointer_.row >= mode_timing_.first_vsync_line && read_pointer_.row < mode_timing_.first_vsync_line+4) {
|
if(read_pointer_.row >= mode_timing_.first_vsync_line && read_pointer_.row < mode_timing_.first_vsync_line+4) {
|
||||||
// Vertical sync.
|
// Vertical sync.
|
||||||
if(end_column == 342) {
|
if(end_column == 342) {
|
||||||
|
Reference in New Issue
Block a user