Skip to content

Commit

Permalink
funtech/supracan.cpp: sprite mono color goes to
Browse files Browse the repository at this point in the history
  • Loading branch information
angelosa committed Sep 12, 2024
1 parent 813c5fe commit 98d6cb7
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/mame/funtech/supracan.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2070,6 +2070,7 @@ void supracan_state::video_w(offs_t offset, uint16_t data, uint16_t mem_mask)
/* Sprites */
case 0x20/2: m_sprite_base_addr = data << 2; LOGMASKED(LOG_SPRITES, "sprite_base_addr = %04x\n", data); break;
case 0x22/2: m_sprite_count = data + 1; LOGMASKED(LOG_SPRITES, "sprite_count = %d\n", data + 1); break;
case 0x24/2: m_sprite_mono_color = data & 0xff; break;
case 0x26/2: m_sprite_flags = data; LOGMASKED(LOG_SPRITES, "sprite_flags = %04x\n", data); break;

/* Tilemap 0 */
Expand Down

1 comment on commit 98d6cb7

@angelosa
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

.. $f00024

Please sign in to comment.