Fix last access modifier

This commit is contained in:
Matt Nadareski
2021-07-05 16:30:38 -07:00
parent 32a686d4d1
commit bd159b95a5
4 changed files with 11 additions and 6 deletions

View File

@@ -358,7 +358,7 @@ namespace RedBookPlayer.Common.Hardware
if(_opticalDisc == null || !_opticalDisc.Initialized)
return;
_opticalDisc.CurrentSector = Math.Min(_opticalDisc.TotalSectors, _opticalDisc.CurrentSector + 75);
_opticalDisc.SetCurrentSector(Math.Min(_opticalDisc.TotalSectors, _opticalDisc.CurrentSector + 75));
}
/// <summary>
@@ -370,7 +370,7 @@ namespace RedBookPlayer.Common.Hardware
return;
if(_opticalDisc.CurrentSector >= 75)
_opticalDisc.CurrentSector -= 75;
_opticalDisc.SetCurrentSector(_opticalDisc.CurrentSector - 75);
}
#endregion