mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-19 23:32:28 +00:00
Flips sprite priority in the temporary renderer.
The better to test other issues in the interim.
This commit is contained in:
parent
6975ed22c0
commit
5f789092be
@ -782,7 +782,7 @@ void Base::draw_sms(int start, int end) {
|
|||||||
master_system_.colour_ram[16 + background_colour_];
|
master_system_.colour_ram[16 + background_colour_];
|
||||||
|
|
||||||
// EXPERIMENTAL: chuck sprite outlines on as a post-fix.
|
// EXPERIMENTAL: chuck sprite outlines on as a post-fix.
|
||||||
for(int c = 0; c < sprite_set_.fetched_sprite_slot; ++c) {
|
for(int c = sprite_set_.fetched_sprite_slot - 1; c >= 0; --c) {
|
||||||
int x = -sprite_set_.active_sprites[c].shift_position;
|
int x = -sprite_set_.active_sprites[c].shift_position;
|
||||||
pattern = *reinterpret_cast<uint32_t *>(sprite_set_.active_sprites[c].image);
|
pattern = *reinterpret_cast<uint32_t *>(sprite_set_.active_sprites[c].image);
|
||||||
for(int ox = x; ox < x+8; ox++) {
|
for(int ox = x; ox < x+8; ox++) {
|
||||||
|
Loading…
Reference in New Issue
Block a user