summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/speaker.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/speaker.c')
-rw-r--r--src/emu/speaker.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/emu/speaker.c b/src/emu/speaker.c
index 9214309d803..565a4f36360 100644
--- a/src/emu/speaker.c
+++ b/src/emu/speaker.c
@@ -49,9 +49,9 @@
// DEBUGGING
//**************************************************************************
-#define VERBOSE (0)
+#define VERBOSE (0)
-#define VPRINTF(x) do { if (VERBOSE) mame_printf_debug x; } while (0)
+#define VPRINTF(x) do { if (VERBOSE) mame_printf_debug x; } while (0)
@@ -74,15 +74,15 @@ const device_type SPEAKER = &device_creator<speaker_device>;
speaker_device::speaker_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
: device_t(mconfig, SPEAKER, "Speaker", tag, owner, clock),
- device_mixer_interface(mconfig, *this),
- m_x(0.0),
- m_y(0.0),
- m_z(0.0)
+ device_mixer_interface(mconfig, *this),
+ m_x(0.0),
+ m_y(0.0),
+ m_z(0.0)
#ifdef MAME_DEBUG
,
- m_max_sample(0),
- m_clipped_samples(0),
- m_total_samples(0)
+ m_max_sample(0),
+ m_clipped_samples(0),
+ m_total_samples(0)
#endif
{
}