Code cleanup, fix playback again

This commit is contained in:
Matt Nadareski
2021-10-06 22:46:50 -07:00
parent b02ca60b1e
commit 8643bf36a6
5 changed files with 46 additions and 50 deletions

View File

@@ -43,7 +43,7 @@ namespace RedBookPlayer.Models.Audio.Linux
/// <inheritdoc/>
public void SetVolume(float volume)
{
if (_soundOut != null)
if(_soundOut != null)
_soundOut.Volume = volume;
}

View File

@@ -43,7 +43,7 @@ namespace RedBookPlayer.Models.Audio.Windows
/// <inheritdoc/>
public void SetVolume(float volume)
{
if (_soundOut != null)
if(_soundOut != null)
_soundOut.Volume = volume;
}