diff options
author | 2013-01-31 15:46:45 +0000 | |
---|---|---|
committer | 2013-01-31 15:46:45 +0000 | |
commit | 0068d9316da7da20b4dbe168e4986c3dc765600e (patch) | |
tree | e3ca101ee56c309c396f642b1b3afddca8251740 /src/mame/includes/lockon.h | |
parent | daea35e7d56d3236188e36d4112ee1a8bf4b0cb3 (diff) |
Modernize the Volume and RC filter sound devices. [Andrew Gardner]
Diffstat (limited to 'src/mame/includes/lockon.h')
-rw-r--r-- | src/mame/includes/lockon.h | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/src/mame/includes/lockon.h b/src/mame/includes/lockon.h index 68318c42f92..d12a7e6654e 100644 --- a/src/mame/includes/lockon.h +++ b/src/mame/includes/lockon.h @@ -4,6 +4,8 @@ *************************************************************************/ +#include <sound/flt_vol.h> + /* Calculated from CRT controller writes */ #define PIXEL_CLOCK (XTAL_21MHz / 3) #define FRAMEBUFFER_CLOCK XTAL_10MHz @@ -68,12 +70,12 @@ public: cpu_device *m_audiocpu; device_t *m_ground; device_t *m_object; - device_t *m_f2203_1l; - device_t *m_f2203_2l; - device_t *m_f2203_3l; - device_t *m_f2203_1r; - device_t *m_f2203_2r; - device_t *m_f2203_3r; + filter_volume_device *m_f2203_1l; + filter_volume_device *m_f2203_2l; + filter_volume_device *m_f2203_3l; + filter_volume_device *m_f2203_1r; + filter_volume_device *m_f2203_2r; + filter_volume_device *m_f2203_3r; DECLARE_READ16_MEMBER(lockon_crtc_r); DECLARE_WRITE16_MEMBER(lockon_crtc_w); DECLARE_WRITE16_MEMBER(lockon_char_w); |