From 166f1d537ee3ac96d55bf04a7d502b160a1ff6ef Mon Sep 17 00:00:00 2001 From: YoshiRulz Date: Fri, 12 Jul 2024 14:36:43 +1000 Subject: [PATCH] Comment-out unused `DiskBuilder.BamEntry.Entries` (C64Hawk) --- .../Computers/Commodore64/Media/DiskBuilder.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/BizHawk.Emulation.Cores/Computers/Commodore64/Media/DiskBuilder.cs b/src/BizHawk.Emulation.Cores/Computers/Commodore64/Media/DiskBuilder.cs index a1bd044334..d1e8ff8138 100644 --- a/src/BizHawk.Emulation.Cores/Computers/Commodore64/Media/DiskBuilder.cs +++ b/src/BizHawk.Emulation.Cores/Computers/Commodore64/Media/DiskBuilder.cs @@ -87,10 +87,13 @@ namespace BizHawk.Emulation.Cores.Computers.Commodore64.Media return buf; } +#if false public IEnumerable Entries { get { +// return Enumerable.Range(start: 0, count: Sectors).Select(i => (Data & (1 << (24 - i))) is not 0); + // ^ simpler implementation, probably has an off-by-one error --yoshi var d = Data; for (var i = 0; i < Sectors; i++) { @@ -99,6 +102,7 @@ namespace BizHawk.Emulation.Cores.Computers.Commodore64.Media } } } +#endif } protected class LocatedEntry