summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/sound/multipcm.c
diff options
context:
space:
mode:
author Aaron Giles <aaron@aarongiles.com>2008-07-28 16:22:20 +0000
committer Aaron Giles <aaron@aarongiles.com>2008-07-28 16:22:20 +0000
commit4a6fc8d5e54de36eeeebd7263554e591d09b758c (patch)
tree381124ebd8ec469c3024b6d2dbd577dbe985e458 /src/emu/sound/multipcm.c
parent86022ddde4078cde05999f5a8d7135116bc782cb (diff)
Region classes go bye-bye.
Diffstat (limited to 'src/emu/sound/multipcm.c')
-rw-r--r--src/emu/sound/multipcm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/sound/multipcm.c b/src/emu/sound/multipcm.c
index f62f07e37e9..87112da4a5d 100644
--- a/src/emu/sound/multipcm.c
+++ b/src/emu/sound/multipcm.c
@@ -495,7 +495,7 @@ static void *multipcm_start(const char *tag, int sndindex, int clock, const void
ptChip=(struct _MultiPCM *)auto_malloc(sizeof(struct _MultiPCM));
- ptChip->ROM=(INT8 *)memory_region(Machine, RGNCLASS_SOUND, tag);
+ ptChip->ROM=(INT8 *)memory_region(Machine, tag);
ptChip->Rate=(float) clock / MULTIPCM_CLOCKDIV;
ptChip->stream = stream_create(0, 2, ptChip->Rate, ptChip, MultiPCM_update);