[ChannelFHawk] Remove the computer thinking activity indicator from the non-chess mappers

This commit is contained in:
Asnivor 2024-09-05 16:23:04 +01:00
parent c994e7bc84
commit cd391a6e88
3 changed files with 7 additions and 1 deletions

View File

@ -33,6 +33,10 @@ namespace BizHawk.Emulation.Cores.Consoles.ChannelF
}
protected byte[] _ram;
public virtual bool HasActivityLED { get; set; }
public virtual string ActivityLEDDescription { get; set; }
public bool ActivityLED;
public int MultiBank;
public int MultiHalfBank;

View File

@ -8,6 +8,8 @@
public class mapper_SCHACH : VesCartBase
{
public override string BoardType => "SCHACH";
public override bool HasActivityLED => true;
public override string ActivityLEDDescription => "Chess Brain Thinking Activity";
public mapper_SCHACH(byte[] rom)
{

View File

@ -72,7 +72,7 @@ namespace BizHawk.Emulation.Cores.Consoles.ChannelF
public VesCartBase Cartridge;
public RegionType region;
public bool DriveLightEnabled => true;
public bool DriveLightEnabled => Cartridge.HasActivityLED;
public bool DriveLightOn => Cartridge.ActivityLED;
}