Removing dead code

This commit is contained in:
Sergio Martin 2025-03-18 18:44:44 +01:00
parent 985cc02713
commit eae719af54
1 changed files with 0 additions and 14 deletions

View File

@ -311,20 +311,6 @@ namespace BizHawk.Emulation.Cores.Computers.DOS
return ret;
}
private void SelectNextDisc()
{
_discIndex++;
if (_discIndex == _discAssets.Count) _discIndex = 0;
CoreComm.Notify($"Selected CDROM {_discIndex}: {_discAssets[_discIndex].DiscName}", null);
}
private void SelectPrevDisc()
{
_discIndex--;
if (_discIndex < 0) _discIndex = _discAssets.Count - 1;
CoreComm.Notify($"Selected CDROM {_discIndex}: {_discAssets[_discIndex].DiscName}", null);
}
private void CDRead(string cdRomName, int lba, IntPtr dest, int sectorSize)
{
// Console.WriteLine($"Reading from {cdRomName} : {lba} : {sectorSize}");