summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/thunderx.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/thunderx.c')
-rw-r--r--src/mame/drivers/thunderx.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/thunderx.c b/src/mame/drivers/thunderx.c
index 77a82af1ec2..db00ce1cb0d 100644
--- a/src/mame/drivers/thunderx.c
+++ b/src/mame/drivers/thunderx.c
@@ -317,7 +317,7 @@ WRITE8_MEMBER(thunderx_state::thunderx_1f98_w)
WRITE8_MEMBER(thunderx_state::scontra_bankswitch_w)
{
// bits 0-3 select ROM bank at 6000-7fff
- m_rombank->set_entry(data & 0x0f);
+ m_rombank->set_entry(data & 0x0f);
// bit 4 selects work RAM or palette RAM at 5800-5fff
m_bank5800->set_bank((data & 0x10) >> 4);