From 1c5ec3f1dd141e26876997c7bf706fdf2a333a2e Mon Sep 17 00:00:00 2001 From: James Groom Date: Thu, 28 Feb 2019 14:07:16 +1000 Subject: [PATCH] Fix typo ...or is it the docs that are wrong? --- .../Consoles/Sega/SMS/SMS.ICodeDataLogger.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/BizHawk.Emulation.Cores/Consoles/Sega/SMS/SMS.ICodeDataLogger.cs b/BizHawk.Emulation.Cores/Consoles/Sega/SMS/SMS.ICodeDataLogger.cs index 746277efee..14c9616b4c 100644 --- a/BizHawk.Emulation.Cores/Consoles/Sega/SMS/SMS.ICodeDataLogger.cs +++ b/BizHawk.Emulation.Cores/Consoles/Sega/SMS/SMS.ICodeDataLogger.cs @@ -97,7 +97,7 @@ namespace BizHawk.Emulation.Cores.Sega.MasterSystem public byte FetchMemory_CDL(ushort address) { RunCDL(address, CDLog_Flags.ExecFirst); - return ReadMemory(address); + return FetchMemory(address); } /// @@ -109,4 +109,4 @@ namespace BizHawk.Emulation.Cores.Sega.MasterSystem return ReadMemory(address); } } -} \ No newline at end of file +}