diff options
author | 2008-02-18 01:30:05 +0000 | |
---|---|---|
committer | 2008-02-18 01:30:05 +0000 | |
commit | 3d5cdeaf8c8f5ab43c847f9dd2092af189f15459 (patch) | |
tree | 56da4315abff0cf2a33929fe46697bf3b16a8242 /src/emu/sndintrf.c | |
parent | c49a02dfc91f83cd8e082b5e81372d7dcaee9d77 (diff) |
From Atari Ace:
Hi mamedev,
Here's my periodic batch of code cleanups. The usual batch of adding static/const plus some include fixes. In addition, I reverted some of the changes to build.mak from u1 which made some MSVC builds fail, and adjusted/optimized an m10.c gfx_layout. I also added some missing cores to cpuintrf.c, sndintrf.c and added some missing #if's to 5220intf.c.
~aa
Diffstat (limited to 'src/emu/sndintrf.c')
-rw-r--r-- | src/emu/sndintrf.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/emu/sndintrf.c b/src/emu/sndintrf.c index 616a52555e4..4983ff1087a 100644 --- a/src/emu/sndintrf.c +++ b/src/emu/sndintrf.c @@ -316,6 +316,9 @@ static const struct #if (HAS_M58817) { SOUND_M58817, m58817_get_info }, #endif +#if (HAS_TMC0285) + { SOUND_TMC0285, tmc0285_get_info }, +#endif #if (HAS_TMS5200) { SOUND_TMS5200, tms5200_get_info }, #endif |