fix #3287
There are still some unanswered related questions here wrt API, but this should suffice in any case.
This commit is contained in:
parent
4df256cd6b
commit
d3d90eb70d
|
@ -159,13 +159,16 @@ namespace BizHawk.Client.Common
|
|||
|
||||
private void AddCallback()
|
||||
{
|
||||
_core.MemoryCallbacks.Add(new MemoryCallback(Scope, Type, Name, Callback, Address, AddressMask));
|
||||
_core.MemoryCallbacks.Add(new MemoryCallback(Scope, Type, Name, DoCallback, Address, AddressMask));
|
||||
}
|
||||
|
||||
private void RemoveCallback()
|
||||
{
|
||||
_core.MemoryCallbacks.Remove(Callback);
|
||||
}
|
||||
_core.MemoryCallbacks.Remove(DoCallback);
|
||||
}
|
||||
|
||||
private void DoCallback(uint address, uint value, uint flags)
|
||||
=> Callback(address, value, flags);
|
||||
|
||||
public void ResetCallback()
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue