call with value, not 0
This commit is contained in:
parent
a8f293eec8
commit
fe3455be7d
|
@ -73,7 +73,7 @@ namespace BizHawk.Emulation.Common
|
|||
{
|
||||
if (!cbs[i].Address.HasValue || (cbs[i].Scope == scope && cbs[i].Address == (addr & cbs[i].AddressMask)))
|
||||
{
|
||||
cbs[i].Callback(addr, 0);
|
||||
cbs[i].Callback(addr, value);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue