From eae719af54320e09e3cf0d1dd5edb03d1dea9774 Mon Sep 17 00:00:00 2001 From: Sergio Martin Date: Tue, 18 Mar 2025 18:44:44 +0100 Subject: [PATCH] Removing dead code --- .../Computers/DOS/DOSBox.cs | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/src/BizHawk.Emulation.Cores/Computers/DOS/DOSBox.cs b/src/BizHawk.Emulation.Cores/Computers/DOS/DOSBox.cs index 258d6c83d9..6969c6a59d 100644 --- a/src/BizHawk.Emulation.Cores/Computers/DOS/DOSBox.cs +++ b/src/BizHawk.Emulation.Cores/Computers/DOS/DOSBox.cs @@ -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}");