Update SMS CodeDataLogger

This commit is contained in:
alyosha-tas 2017-10-25 19:19:30 -04:00 committed by GitHub
parent 8e7d8fbff5
commit c593cb4c47
1 changed files with 2 additions and 2 deletions

View File

@ -94,9 +94,9 @@ namespace BizHawk.Emulation.Cores.Sega.MasterSystem
/// <summary>
/// A wrapper for FetchMemory which inserts CDL logic
/// </summary>
private byte FetchMemory_CDL(ushort address, bool first)
private byte FetchMemory_CDL(ushort address)
{
RunCDL(address, first ? CDLog_Flags.ExecFirst : CDLog_Flags.ExecOperand);
RunCDL(address, CDLog_Flags.ExecFirst);
return ReadMemory(address);
}