diff options
author | 2008-09-11 15:57:52 +0000 | |
---|---|---|
committer | 2008-09-11 15:57:52 +0000 | |
commit | 3d1dbafcc2b45b57207201850ac69e486ed0f648 (patch) | |
tree | 0e8f2fb24788aa01ef5326d3f890abef25f5fdd7 /src/emu/sound.h | |
parent | f67c8732b288cd5bbf7b8c80134e979697d57dfc (diff) |
From: Oliver Stoeneberg [mailto:oliverst@online.de]
Subject: Machine -> machine
This is a big patch adding running_machine* parameters and using
"machine" where available.
Diffstat (limited to 'src/emu/sound.h')
-rw-r--r-- | src/emu/sound.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/emu/sound.h b/src/emu/sound.h index bb169d3d63f..45b131da923 100644 --- a/src/emu/sound.h +++ b/src/emu/sound.h @@ -88,11 +88,11 @@ int sound_get_attenuation(void); void sound_global_enable(int enable); /* user gain controls on speaker inputs for mixing */ -int sound_get_user_gain_count(void); -void sound_set_user_gain(int index, float gain); -float sound_get_user_gain(int index); -float sound_get_default_gain(int index); -const char *sound_get_user_gain_name(int index); +int sound_get_user_gain_count(running_machine *machine); +void sound_set_user_gain(running_machine *machine, int index, float gain); +float sound_get_user_gain(running_machine *machine, int index); +float sound_get_default_gain(running_machine *machine, int index); +const char *sound_get_user_gain_name(running_machine *machine, int index); /* misc helpers */ int sound_find_sndnum_by_tag(const char *tag); |