summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/taito_b.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/taito_b.cpp')
-rw-r--r--src/mame/drivers/taito_b.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/taito_b.cpp b/src/mame/drivers/taito_b.cpp
index 43519a63e72..af00f46deea 100644
--- a/src/mame/drivers/taito_b.cpp
+++ b/src/mame/drivers/taito_b.cpp
@@ -2747,7 +2747,7 @@ MACHINE_CONFIG_END
#if 0
void taitob_state::ryujin_patch(void)
{
- UINT16 *rom = (UINT16*)memregion("maincpu")->base();
+ uint16_t *rom = (uint16_t*)memregion("maincpu")->base();
rom[ 0x62/2 ] = 1;
//0 (already in rom) - Taito Corporation 1993
//1 - Taito America corp with blue FBI logo
@@ -2812,7 +2812,7 @@ MACHINE_CONFIG_END
#if 0
void taitob_state::sbm_patch(void)
{
- UINT16 *rom = (UINT16*)memregion("maincpu")->base();
+ uint16_t *rom = (uint16_t*)memregion("maincpu")->base();
rom[ 0x7ffff/2 ] = 2; //US version
}
#endif