summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/sound/wave.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/sound/wave.cpp')
-rw-r--r--src/devices/sound/wave.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/devices/sound/wave.cpp b/src/devices/sound/wave.cpp
index ac1d4036948..8515ec5237f 100644
--- a/src/devices/sound/wave.cpp
+++ b/src/devices/sound/wave.cpp
@@ -18,6 +18,9 @@
#include "emu.h"
#include "wave.h"
+#include "speaker.h"
+
+
#define ALWAYS_PLAY_SOUND 0
@@ -28,7 +31,7 @@ void wave_device::static_set_cassette_tag(device_t &device, const char *cassette
wave.m_cassette_tag = cassette_tag;
}
-const device_type WAVE = &device_creator<wave_device>;
+const device_type WAVE = device_creator<wave_device>;
wave_device::wave_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock)
: device_t(mconfig, WAVE, "Wave", tag, owner, clock, "wave", __FILE__),