[ChannelFHawk] Remove the computer thinking activity indicator from the non-chess mappers
This commit is contained in:
parent
c994e7bc84
commit
cd391a6e88
|
@ -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;
|
||||
|
|
|
@ -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)
|
||||
{
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue