summaryrefslogtreecommitdiffstats
path: root/src/mame/machine/beezer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/beezer.cpp')
-rw-r--r--src/mame/machine/beezer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/machine/beezer.cpp b/src/mame/machine/beezer.cpp
index c8ffe89b5ba..55fb06f1292 100644
--- a/src/mame/machine/beezer.cpp
+++ b/src/mame/machine/beezer.cpp
@@ -138,7 +138,7 @@ WRITE8_MEMBER(beezer_state::beezer_bankswitch_w)
}
else
{
- UINT8 *rom = memregion("maincpu")->base() + 0x10000;
+ uint8_t *rom = memregion("maincpu")->base() + 0x10000;
space.install_ram(0xc000, 0xcfff, rom + (data & 0x07) * 0x2000 + ((data & 0x08) ? 0x1000: 0));
}
}