mirror of
https://github.com/stenzek/duckstation.git
synced 2026-07-08 17:46:19 +00:00
@@ -5329,9 +5329,11 @@ bool System::IsFastForwardingBoot()
|
|||||||
|
|
||||||
u8 System::GetAudioOutputVolume()
|
u8 System::GetAudioOutputVolume()
|
||||||
{
|
{
|
||||||
return ((s_state.target_speed == 0.0 || s_state.target_speed > 1.0f) && !s_state.syncing_to_host) ?
|
return g_settings.audio_output_muted ?
|
||||||
g_settings.audio_fast_forward_volume :
|
0 :
|
||||||
g_settings.audio_output_volume;
|
(((s_state.target_speed == 0.0 || s_state.target_speed > 1.0f) && !s_state.syncing_to_host) ?
|
||||||
|
g_settings.audio_fast_forward_volume :
|
||||||
|
g_settings.audio_output_volume);
|
||||||
}
|
}
|
||||||
|
|
||||||
void System::UpdateVolume()
|
void System::UpdateVolume()
|
||||||
|
|||||||
Reference in New Issue
Block a user