diff options
Diffstat (limited to 'src/mame/drivers/labyrunr.cpp')
-rw-r--r-- | src/mame/drivers/labyrunr.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/labyrunr.cpp b/src/mame/drivers/labyrunr.cpp index 948d851040e..9b56dd489f3 100644 --- a/src/mame/drivers/labyrunr.cpp +++ b/src/mame/drivers/labyrunr.cpp @@ -158,7 +158,7 @@ GFXDECODE_END void labyrunr_state::machine_start() { - UINT8 *ROM = memregion("maincpu")->base(); + uint8_t *ROM = memregion("maincpu")->base(); membank("bank1")->configure_entries(0, 6, &ROM[0x10000], 0x4000); } |