summaryrefslogtreecommitdiffstatshomepage
path: root/src
diff options
context:
space:
mode:
author mariuszw1 <mariuszw1@users.noreply.github.com>2010-11-02 22:11:31 +0000
committer mariuszw1 <mariuszw1@users.noreply.github.com>2010-11-02 22:11:31 +0000
commitb59eb83588961f4f9d993b435060df8d4afbd50f (patch)
treecbbadf9f4c852731faf27d49bb3b488e35f86321 /src
parent52276db123156997c14d778ee3abb9db95877938 (diff)
Fixed crash in cubocd32/akiko [Mariusz Wojcieszek]
Diffstat (limited to 'src')
-rw-r--r--src/mame/machine/cubocd32.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/machine/cubocd32.c b/src/mame/machine/cubocd32.c
index 4c366513e1d..51c518f1db3 100644
--- a/src/mame/machine/cubocd32.c
+++ b/src/mame/machine/cubocd32.c
@@ -372,7 +372,7 @@ static void akiko_set_cd_status(akiko_state *state, UINT32 status)
static TIMER_CALLBACK(akiko_frame_proc)
{
- akiko_state *state = (akiko_state *)param;
+ akiko_state *state = (akiko_state *)ptr;
running_device *cdda = cdda_from_cdrom(machine, state->cdrom);
(void)param;