diff options
Diffstat (limited to 'src/mame/drivers/atarig1.cpp')
-rw-r--r-- | src/mame/drivers/atarig1.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/atarig1.cpp b/src/mame/drivers/atarig1.cpp index 9a8d509e712..4a9bd7b1bd1 100644 --- a/src/mame/drivers/atarig1.cpp +++ b/src/mame/drivers/atarig1.cpp @@ -171,10 +171,10 @@ void atarig1_state::pitfightb_cheap_slapstic_init() { /* install a read handler */ m_maincpu->space(AS_PROGRAM).install_read_handler(0x038000, 0x03ffff, read16_delegate(FUNC(atarig1_state::pitfightb_cheap_slapstic_r),this)); - m_bslapstic_base = (UINT16 *)(memregion("maincpu")->base() + 0x38000); + m_bslapstic_base = (uint16_t *)(memregion("maincpu")->base() + 0x38000); /* allocate memory for a copy of bank 0 */ - m_bslapstic_bank0 = std::make_unique<UINT8[]>(0x2000); + m_bslapstic_bank0 = std::make_unique<uint8_t[]>(0x2000); memcpy(m_bslapstic_bank0.get(), m_bslapstic_base, 0x2000); /* not primed by default */ |