mirror of
https://github.com/aaru-dps/RedBookPlayer.git
synced 2025-12-16 19:24:41 +00:00
Code cleanup, fix playback again
This commit is contained in:
@@ -43,7 +43,7 @@ namespace RedBookPlayer.Models.Audio.Linux
|
||||
/// <inheritdoc/>
|
||||
public void SetVolume(float volume)
|
||||
{
|
||||
if (_soundOut != null)
|
||||
if(_soundOut != null)
|
||||
_soundOut.Volume = volume;
|
||||
}
|
||||
|
||||
|
||||
@@ -43,7 +43,7 @@ namespace RedBookPlayer.Models.Audio.Windows
|
||||
/// <inheritdoc/>
|
||||
public void SetVolume(float volume)
|
||||
{
|
||||
if (_soundOut != null)
|
||||
if(_soundOut != null)
|
||||
_soundOut.Volume = volume;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user