call with value, not 0

This commit is contained in:
Brian Armstrong 2019-01-24 03:25:50 -08:00
parent a8f293eec8
commit fe3455be7d
1 changed files with 1 additions and 1 deletions

View File

@ -73,7 +73,7 @@ namespace BizHawk.Emulation.Common
{ {
if (!cbs[i].Address.HasValue || (cbs[i].Scope == scope && cbs[i].Address == (addr & cbs[i].AddressMask))) 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);
} }
} }
} }