diff options
Diffstat (limited to 'src/devices/sound/spkrdev.h')
-rw-r--r-- | src/devices/sound/spkrdev.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/sound/spkrdev.h b/src/devices/sound/spkrdev.h index 49e953b5d40..7542d943793 100644 --- a/src/devices/sound/spkrdev.h +++ b/src/devices/sound/spkrdev.h @@ -21,9 +21,9 @@ public: ~speaker_sound_device() {} // configuration - void set_levels(int num_levels, const int16_t *levels) { m_num_levels = num_levels; m_levels = levels; } + void set_levels(int num_levels, const int16_t *levels) { m_num_levels = num_levels; m_levels = levels;} - void level_w(int new_level); // can use as writeline + void level_w(int new_level); protected: // device-level overrides |