Remove warning, re initialisation.

This commit is contained in:
Adrian Conlon 2024-07-26 12:14:32 +01:00
parent b4c2d5fcff
commit b3dee2ea80

View File

@ -6,8 +6,8 @@ namespace EightBit
{ {
public class W65C02(Bus bus) : M6502Core(bus) public class W65C02(Bus bus) : M6502Core(bus)
{ {
private bool _stopped = false; private bool _stopped;
private bool _waiting = false; private bool _waiting;
private bool Stopped private bool Stopped
{ {