summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/sound/speaker.h
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2013-01-11 07:32:46 +0000
committer Miodrag Milanovic <mmicko@gmail.com>2013-01-11 07:32:46 +0000
commit0e19f641d3186cdbf51f8ca857e2b07ab95779c2 (patch)
tree234109de1123b13f217494af4b3f8efad346d5cc /src/emu/sound/speaker.h
parent111157ca09a9ff60fe4a9ba49173c315e94314fa (diff)
Cleanups and version bumpmame0148
Diffstat (limited to 'src/emu/sound/speaker.h')
-rw-r--r--src/emu/sound/speaker.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/emu/sound/speaker.h b/src/emu/sound/speaker.h
index d73c7211e72..791ebc1fc17 100644
--- a/src/emu/sound/speaker.h
+++ b/src/emu/sound/speaker.h
@@ -13,18 +13,18 @@
#include "devlegcy.h"
-#define SPEAKER_TAG "speaker"
+#define SPEAKER_TAG "speaker"
struct speaker_interface
{
- int num_level; /* optional: number of levels (if not two) */
- const INT16 *levels; /* optional: pointer to level lookup table */
+ int num_level; /* optional: number of levels (if not two) */
+ const INT16 *levels; /* optional: pointer to level lookup table */
};
void speaker_level_w (device_t *device, int new_level);
class speaker_sound_device : public device_t,
- public device_sound_interface
+ public device_sound_interface
{
public:
speaker_sound_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);