Comment-out unused `DiskBuilder.BamEntry.Entries` (C64Hawk)

This commit is contained in:
YoshiRulz 2024-07-12 14:36:43 +10:00
parent fc8fd64143
commit 166f1d537e
No known key found for this signature in database
GPG Key ID: C4DE31C245353FB7
1 changed files with 4 additions and 0 deletions

View File

@ -87,10 +87,13 @@ namespace BizHawk.Emulation.Cores.Computers.Commodore64.Media
return buf;
}
#if false
public IEnumerable<bool> 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