From 17b7d9790c7dbeca3d692199b1fff5dcf8fcd572 Mon Sep 17 00:00:00 2001 From: adelikat Date: Sun, 28 Feb 2016 09:20:08 -0500 Subject: [PATCH] Tracer header for Atari 2600 --- BizHawk.Emulation.Cores/Consoles/Atari/2600/Atari2600.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/BizHawk.Emulation.Cores/Consoles/Atari/2600/Atari2600.cs b/BizHawk.Emulation.Cores/Consoles/Atari/2600/Atari2600.cs index dfc50a3cd5..732cd3a1e6 100644 --- a/BizHawk.Emulation.Cores/Consoles/Atari/2600/Atari2600.cs +++ b/BizHawk.Emulation.Cores/Consoles/Atari/2600/Atari2600.cs @@ -29,7 +29,6 @@ namespace BizHawk.Emulation.Cores.Atari.Atari2600 var ser = new BasicServiceProvider(this); ServiceProvider = ser; - Tracer = new TraceBuffer(); MemoryCallbacks = new MemoryCallbackSystem(); InputCallbacks = new InputCallbackSystem(); @@ -50,7 +49,8 @@ namespace BizHawk.Emulation.Cores.Atari.Atari2600 RebootCore(); SetupMemoryDomains(); - + Tracer = new TraceBuffer { Header = Cpu.TraceHeader }; + ser.Register(Cpu); ser.Register(Tracer); ser.Register(_tia);