1
0
mirror of https://github.com/TomHarte/CLK.git synced 2026-04-24 05:18:36 +00:00

Allows the sprite terminator to be specified.

This commit is contained in:
Thomas Harte
2018-10-23 20:01:47 -04:00
parent 7eeefd2602
commit 2cbd28478d
2 changed files with 4 additions and 3 deletions
+1 -1
View File
@@ -138,7 +138,7 @@ void Base::posit_sprite(LineBuffer &buffer, int sprite_number, int sprite_positi
return;
// A sprite Y of 208 means "don't scan the list any further".
if(mode_timing_.allow_sprite_terminator && sprite_position == 208) {
if(mode_timing_.allow_sprite_terminator && sprite_position == mode_timing_.sprite_terminator) {
buffer.sprites_stopped = true;
return;
}