summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/gunsmoke.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/gunsmoke.cpp')
-rw-r--r--src/mame/drivers/gunsmoke.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/gunsmoke.cpp b/src/mame/drivers/gunsmoke.cpp
index f0aaeb9f4d1..107b871a323 100644
--- a/src/mame/drivers/gunsmoke.cpp
+++ b/src/mame/drivers/gunsmoke.cpp
@@ -96,7 +96,7 @@ READ8_MEMBER(gunsmoke_state::gunsmoke_protection_r)
arcade game. It's hard to tell without pulling the code apart.
*/
- static const UINT8 gunsmoke_fixed_data[] = { 0xff, 0x00, 0x00 };
+ static const uint8_t gunsmoke_fixed_data[] = { 0xff, 0x00, 0x00 };
return gunsmoke_fixed_data[offset];
}
@@ -278,7 +278,7 @@ GFXDECODE_END
void gunsmoke_state::machine_start()
{
- UINT8 *rombase = memregion("maincpu")->base();
+ uint8_t *rombase = memregion("maincpu")->base();
membank("bank1")->configure_entries(0, 4, &rombase[0x10000], 0x4000);