1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-04 18:29:40 +00:00

Minor style improvement.

This commit is contained in:
Thomas Harte 2023-03-10 21:14:52 -05:00
parent 9836a108da
commit d46f869276

View File

@ -70,8 +70,9 @@ void Base<personality>::draw_sprites(LineBuffer &buffer, int start, int end, con
) colour_buffer[c] = sprite_buffer[c];
}
if(sprite_collision)
if(sprite_collision) {
status_ |= StatusSpriteCollision;
}
return;
}