mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-05-24 23:01:23 -04:00
ee5ab7978e
* Fixes audio volume at boot if changed * Update Settings refactor for settings we want to update in the future * remove unused include --------- Co-authored-by: MelonSpeedruns <melonspeedruns@stratobox.net>
19 lines
319 B
C++
19 lines
319 B
C++
#pragma once
|
|
|
|
#include <dolphin/types.h>
|
|
|
|
namespace dusk::audio {
|
|
/**
|
|
* Initialize the audio system and start playing audio.
|
|
*/
|
|
void Initialize();
|
|
|
|
void SetEnableReverb(bool value);
|
|
|
|
void SetMasterVolume(f32 value);
|
|
|
|
u32 GetResetCount(int channelIdx);
|
|
|
|
f32 VolumeFromU16(u16 value);
|
|
}
|