Add new logic to settings; fix Player

This commit is contained in:
Matt Nadareski
2021-10-04 22:58:16 -07:00
parent 765d2f21c1
commit 0a5c3f49c3
3 changed files with 59 additions and 34 deletions

View File

@@ -364,7 +364,7 @@ namespace RedBookPlayer.GUI.ViewModels
ToggleDeEmphasisCommand = ReactiveCommand.Create(ExecuteToggleDeEmphasis);
// Initialize Player
_player = new Player(App.Settings.Volume);
_player = new Player(App.Settings.NumberOfDiscs, App.Settings.Volume);
PlayerState = PlayerState.NoDisc;
}