mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-06 07:12:14 +01:00
15 lines
189 B
C++
15 lines
189 B
C++
#pragma once
|
|
|
|
namespace audio
|
|
{
|
|
struct audio_fxo
|
|
{
|
|
atomic_t<bool> audio_muted{false};
|
|
};
|
|
|
|
f32 get_volume();
|
|
|
|
void toggle_mute();
|
|
void change_volume(s32 delta);
|
|
} // namespace audio
|