Fix PreviousIndex behavior

Fixes the invocation of PreviousTrack from PreviousIndex if the track before the current one is data
This commit is contained in:
Matt Nadareski
2021-06-21 22:00:11 -07:00
parent 7fba90d870
commit 5d0e16f881

View File

@@ -296,6 +296,8 @@ namespace RedBookPlayer
else
CurrentTrackNumber--;
}
else
CurrentTrackNumber--;
LoadTrack(CurrentTrackNumber);
}