diff options
Diffstat (limited to 'src/mame/drivers/eolith.cpp')
-rw-r--r-- | src/mame/drivers/eolith.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/drivers/eolith.cpp b/src/mame/drivers/eolith.cpp index 5403f5f07c1..eb8a7b6e0de 100644 --- a/src/mame/drivers/eolith.cpp +++ b/src/mame/drivers/eolith.cpp @@ -1516,7 +1516,7 @@ DRIVER_INIT_MEMBER(eolith_state,landbrka) //it fails compares with memories: //$4002d338 -> $4002d348 .... $4002d33f -> $4002d34f //related with bits 0x100 - 0x200 read at startup from input(0) ? - UINT32 *rombase = (UINT32*)memregion("maincpu")->base(); + uint32_t *rombase = (uint32_t*)memregion("maincpu")->base(); rombase[0x14f00/4] = (rombase[0x14f00/4] & 0xffff) | 0x03000000; /* Change BR to NOP */ m_coin_counter_bit = 0x2000; @@ -1527,7 +1527,7 @@ DRIVER_INIT_MEMBER(eolith_state,landbrka) DRIVER_INIT_MEMBER(eolith_state,hidctch2) { //it fails compares in memory like in landbrka - UINT32 *rombase = (UINT32*)memregion("maincpu")->base(); + uint32_t *rombase = (uint32_t*)memregion("maincpu")->base(); rombase[0xbcc8/4] = (rombase[0xbcc8/4] & 0xffff) | 0x03000000; /* Change BR to NOP */ DRIVER_INIT_CALL(eolith); @@ -1536,7 +1536,7 @@ DRIVER_INIT_MEMBER(eolith_state,hidctch2) DRIVER_INIT_MEMBER(eolith_state,hidnc2k) { - UINT32 *rombase = (UINT32*)memregion("maincpu")->base(); + uint32_t *rombase = (uint32_t*)memregion("maincpu")->base(); rombase[0x17b2c/4] = (rombase[0x17b2c/4] & 0x0000ffff) | 0x03000000; /* Change BR to NOP */ DRIVER_INIT_CALL(eolith); } |