diff options
| author | 2010-11-02 22:11:31 +0000 | |
|---|---|---|
| committer | 2010-11-02 22:11:31 +0000 | |
| commit | b59eb83588961f4f9d993b435060df8d4afbd50f (patch) | |
| tree | cbbadf9f4c852731faf27d49bb3b488e35f86321 /src | |
| parent | 52276db123156997c14d778ee3abb9db95877938 (diff) | |
Fixed crash in cubocd32/akiko [Mariusz Wojcieszek]
Diffstat (limited to 'src')
| -rw-r--r-- | src/mame/machine/cubocd32.c | 2 |
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; |
