summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Aaron Giles <aaron@aarongiles.com>2010-10-14 07:44:53 +0000
committer Aaron Giles <aaron@aarongiles.com>2010-10-14 07:44:53 +0000
commitae4ba214b67ed1283cfbc4efb0c3366166938342 (patch)
treeec68ba430003f71d6a11b26bb72eabd1fbd6cd18
parent1c9f6ebea27e03c0dd573605352e418acf58bb66 (diff)
Fix 64-bit compile.mame0139u4
-rw-r--r--src/mame/drivers/cdi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/cdi.c b/src/mame/drivers/cdi.c
index 1ea8f4d2002..d29a9d300a6 100644
--- a/src/mame/drivers/cdi.c
+++ b/src/mame/drivers/cdi.c
@@ -122,7 +122,7 @@ static INPUT_CHANGED( mcu_input )
if(send)
{
- UINT8 data = (UINT8)((UINT32)param & 0x000000ff);
+ UINT8 data = (UINT8)((FPTR)param & 0x000000ff);
scc68070_quizard_rx(field->port->machine, scc68070, data);
}
}