fix hex editor scrolling

This commit is contained in:
adelikat 2020-03-20 21:08:52 -05:00
parent 5c84c94a12
commit c985dfa96d
1 changed files with 1 additions and 1 deletions

View File

@ -118,7 +118,7 @@ namespace BizHawk.Emulation.Common
for (var i = addresses.Start; i < addresses.EndInclusive; i++)
{
values[i] = PeekByte(i);
values[i - addresses.Start] = PeekByte(i);
}
}