summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/sound/flt_vol.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/sound/flt_vol.h')
-rw-r--r--src/devices/sound/flt_vol.h14
1 files changed, 1 insertions, 13 deletions
diff --git a/src/devices/sound/flt_vol.h b/src/devices/sound/flt_vol.h
index b0f9234d1ae..bcd4a05d399 100644
--- a/src/devices/sound/flt_vol.h
+++ b/src/devices/sound/flt_vol.h
@@ -6,17 +6,6 @@
#pragma once
-
-//**************************************************************************
-// INTERFACE CONFIGURATION MACROS
-//**************************************************************************
-
-#define MCFG_FILTER_VOLUME_ADD(_tag, _clock) \
- MCFG_DEVICE_ADD(_tag, FILTER_VOLUME, _clock)
-#define MCFG_FILTER_VOLUME_REPLACE(_tag, _clock) \
- MCFG_DEVICE_REPLACE(_tag, FILTER_VOLUME, _clock)
-
-
//**************************************************************************
// TYPE DEFINITIONS
//**************************************************************************
@@ -26,7 +15,7 @@
class filter_volume_device : public device_t, public device_sound_interface
{
public:
- filter_volume_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
+ filter_volume_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock = 0);
void flt_volume_set_volume(float volume);
@@ -44,5 +33,4 @@ private:
DECLARE_DEVICE_TYPE(FILTER_VOLUME, filter_volume_device)
-
#endif // MAME_SOUND_FLT_VOL_H