From b3dee2ea80b7b36d5bc6eab7ded00d1b0d0772d5 Mon Sep 17 00:00:00 2001 From: Adrian Conlon <98398945+AdrianConlon@users.noreply.github.com> Date: Fri, 26 Jul 2024 12:14:32 +0100 Subject: [PATCH] Remove warning, re initialisation. --- M6502/W65C02.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/M6502/W65C02.cs b/M6502/W65C02.cs index 583d3c6..d2a4f9c 100644 --- a/M6502/W65C02.cs +++ b/M6502/W65C02.cs @@ -6,8 +6,8 @@ namespace EightBit { public class W65C02(Bus bus) : M6502Core(bus) { - private bool _stopped = false; - private bool _waiting = false; + private bool _stopped; + private bool _waiting; private bool Stopped {