summaryrefslogtreecommitdiffstatshomepage
path: root/src
diff options
context:
space:
mode:
author Robbbert <robbbert@users.noreply.github.com>2012-09-16 06:20:32 +0000
committer Robbbert <robbbert@users.noreply.github.com>2012-09-16 06:20:32 +0000
commitdbf289a1af8c4e44ee7bb8753cba13a7376fa874 (patch)
tree51e9aca325f3ae776bf31517c7bad144f20e3a64 /src
parent1a301849034da9956b893453acce8e0f9168e150 (diff)
MT 5000: gcpinball crash before ok
Diffstat (limited to 'src')
-rw-r--r--src/emu/sound/msm5205.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/sound/msm5205.c b/src/emu/sound/msm5205.c
index 0f6e5c9a22c..c50a3035dcc 100644
--- a/src/emu/sound/msm5205.c
+++ b/src/emu/sound/msm5205.c
@@ -72,7 +72,7 @@ struct msm5205_state
INLINE msm5205_state *get_safe_token(device_t *device)
{
assert(device != NULL);
- assert(device->type() == MSM5205);
+ assert(device->type() == MSM5205 || device->type() == MSM6585);
return (msm5205_state *)downcast<msm5205_device *>(device)->token();
}