diff options
Diffstat (limited to 'src/mame/drivers/mouser.cpp')
-rw-r--r-- | src/mame/drivers/mouser.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/mouser.cpp b/src/mame/drivers/mouser.cpp index ba1dd9a6722..a64e53aa513 100644 --- a/src/mame/drivers/mouser.cpp +++ b/src/mame/drivers/mouser.cpp @@ -288,8 +288,8 @@ DRIVER_INIT_MEMBER(mouser_state,mouser) /* Decode the opcodes */ offs_t i; - UINT8 *rom = memregion("maincpu")->base(); - UINT8 *table = memregion("user1")->base(); + uint8_t *rom = memregion("maincpu")->base(); + uint8_t *table = memregion("user1")->base(); for (i = 0; i < 0x6000; i++) { |