mirror of
https://github.com/Mr-Wiseguy/Zelda64Recomp.git
synced 2024-11-05 22:35:06 +01:00
169155953e
* This commit adds the option to control the main volume game via a slider added to the "Sound" tab in the settings menu.
15 lines
339 B
C++
15 lines
339 B
C++
#ifndef __RECOMP_SOUND_H__
|
|
#define __RECOMP_SOUND_H__
|
|
|
|
namespace recomp {
|
|
void reset_sound_settings();
|
|
void set_main_volume(int volume);
|
|
int get_main_volume();
|
|
void set_bgm_volume(int volume);
|
|
int get_bgm_volume();
|
|
void set_low_health_beeps_enabled(bool enabled);
|
|
bool get_low_health_beeps_enabled();
|
|
}
|
|
|
|
#endif
|