summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/sound/gaelco.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/sound/gaelco.cpp')
-rw-r--r--src/devices/sound/gaelco.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/sound/gaelco.cpp b/src/devices/sound/gaelco.cpp
index a86fa265ffd..b1b1d111788 100644
--- a/src/devices/sound/gaelco.cpp
+++ b/src/devices/sound/gaelco.cpp
@@ -54,7 +54,7 @@ static wav_file* wavraw; // Raw waveform
Gaelco GAE1 sound device
============================================================================*/
-const device_type GAELCO_GAE1 = &device_creator<gaelco_gae1_device>;
+const device_type GAELCO_GAE1 = device_creator<gaelco_gae1_device>;
gaelco_gae1_device::gaelco_gae1_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock)
: gaelco_gae1_device(mconfig, GAELCO_GAE1, "Gaelco GAE1", tag, owner, clock, "gaelco_gae1", __FILE__)
@@ -264,7 +264,7 @@ void gaelco_gae1_device::device_stop()
Gaelco CG-1V sound device
============================================================================*/
-const device_type GAELCO_CG1V = &device_creator<gaelco_cg1v_device>;
+const device_type GAELCO_CG1V = device_creator<gaelco_cg1v_device>;
gaelco_cg1v_device::gaelco_cg1v_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock)
: gaelco_gae1_device(mconfig, GAELCO_CG1V, "Gaelco CG1V", tag, owner, clock, "gaelco_cg1v", __FILE__)