diff options
author | 2013-03-29 09:56:02 +0000 | |
---|---|---|
committer | 2013-03-29 09:56:02 +0000 | |
commit | 46587ba9139754e935df659b5e86f24b52f480ab (patch) | |
tree | d9d6c62b38fc215a92bca2419e0adcfd6a48fd0a /src/emu/sound/scsp.h | |
parent | 266a4643f56c913ae54a3089cd3584505691781c (diff) |
made some of sound devices use device callbacks instead of function callbacks part 2 (nw)
Diffstat (limited to 'src/emu/sound/scsp.h')
-rw-r--r-- | src/emu/sound/scsp.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/sound/scsp.h b/src/emu/sound/scsp.h index 1b4d8bab3d1..556830c0951 100644 --- a/src/emu/sound/scsp.h +++ b/src/emu/sound/scsp.h @@ -12,7 +12,7 @@ struct scsp_interface { int roffset; /* offset in the region */ - void (*irq_callback)(device_t *device, int state); /* irq callback */ + devcb_write_line irq_callback; /* irq callback */ devcb_write_line main_irq; }; |