...or is it the docs that are wrong?
This commit is contained in:
James Groom 2019-02-28 14:07:16 +10:00 committed by GitHub
parent 1d5a097a75
commit 1c5ec3f1dd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -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);
}
/// <summary>
@ -109,4 +109,4 @@ namespace BizHawk.Emulation.Cores.Sega.MasterSystem
return ReadMemory(address);
}
}
}
}