mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-19 08:31:11 +00:00
Merge pull request #316 from TomHarte/SpriteTopLine
Adds one-before-the-graphics as a line for TMS video collection.
This commit is contained in:
commit
7bc1bcd493
@ -168,7 +168,7 @@ void TMS9918::run_for(const HalfCycles cycles) {
|
||||
// ------------------------------
|
||||
// Perform video memory accesses.
|
||||
// ------------------------------
|
||||
if(row_ < 192 && !blank_screen_) {
|
||||
if(((row_ < 192) || (row_ == frame_lines_-1)) && !blank_screen_) {
|
||||
const int access_slot = column_ >> 1; // There are only 171 available memory accesses per line.
|
||||
switch(line_mode_) {
|
||||
case LineMode::Text:
|
||||
|
Loading…
Reference in New Issue
Block a user