Update SMS.cs

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

View File

@ -79,6 +79,7 @@ namespace BizHawk.Emulation.Cores.Sega.MasterSystem
{
ReadHardware = ReadPort,
WriteHardware = WritePort,
FetchMemory = ReadMemory,
ReadMemory = ReadMemory,
WriteMemory = WriteMemory,
MemoryCallbacks = MemoryCallbacks
@ -262,7 +263,7 @@ namespace BizHawk.Emulation.Cores.Sega.MasterSystem
/// <summary>
/// A dummy FetchMemory that simply reads the memory
/// </summary>
private byte FetchMemory_StubThunk(ushort address, bool first)
private byte FetchMemory_StubThunk(ushort address)
{
return ReadMemory(address);
}
@ -355,4 +356,4 @@ namespace BizHawk.Emulation.Cores.Sega.MasterSystem
private readonly string[] validRegions = { "Export", "Japan", "Auto" };
}
}
}