summaryrefslogtreecommitdiffstats
path: root/src/mame/drivers/tbowl.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/tbowl.cpp')
-rw-r--r--src/mame/drivers/tbowl.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/tbowl.cpp b/src/mame/drivers/tbowl.cpp
index badd259b005..6a40aac2228 100644
--- a/src/mame/drivers/tbowl.cpp
+++ b/src/mame/drivers/tbowl.cpp
@@ -152,7 +152,7 @@ void tbowl_state::adpcm_int( msm5205_device *device, int num )
}
else
{
- UINT8 *ROM = memregion("adpcm")->base() + 0x10000 * num;
+ uint8_t *ROM = memregion("adpcm")->base() + 0x10000 * num;
m_adpcm_data[num] = ROM[m_adpcm_pos[num]++];
device->data_w(m_adpcm_data[num] >> 4);