summaryrefslogtreecommitdiffstats
path: root/src/mame/drivers/pipedrm.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/pipedrm.cpp')
-rw-r--r--src/mame/drivers/pipedrm.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/pipedrm.cpp b/src/mame/drivers/pipedrm.cpp
index 9fc4984a3a2..6f8764ac51f 100644
--- a/src/mame/drivers/pipedrm.cpp
+++ b/src/mame/drivers/pipedrm.cpp
@@ -905,7 +905,7 @@ DRIVER_INIT_MEMBER(pipedrm_state,pipedrm)
{
const memory_share *share = memshare("palette");
/* sprite RAM lives at the end of palette RAM */
- m_spriteram.set_target((UINT8*)share->ptr() + 0xc00, 0x400);
+ m_spriteram.set_target((uint8_t*)share->ptr() + 0xc00, 0x400);
m_maincpu->space(AS_PROGRAM).install_ram(0xcc00, 0xcfff, m_spriteram);
}