Skip to content

Commit

Permalink
samurai: Fix palette banking (MT 08173)
Browse files Browse the repository at this point in the history
  • Loading branch information
ajrhacker committed Jan 6, 2022
1 parent e14fec6 commit 0607202
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/mame/drivers/vicdual.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2458,9 +2458,8 @@ READ_LINE_MEMBER(vicdual_state::samurai_protection_r)

void vicdual_state::samurai_io_w(offs_t offset, uint8_t data)
{
if (offset & 0x02) { /* samurai_audio_w(0, data) */ }
if (offset & 0x02) { palette_bank_w(data); /* samurai_audio_w(0, data >> 4) */ }
if (offset & 0x08) assert_coin_status();
if (offset & 0x40) palette_bank_w(data);
}


Expand Down

0 comments on commit 0607202

Please sign in to comment.