Probably fix a hex editor off by N issue that was crashing some things sometimes
There's DataSize and dataSize and this method was using dataSize all the way through except where it wasn't
This commit is contained in:
parent
bffd8e4df3
commit
6eb54da6af
|
@ -574,7 +574,7 @@ namespace BizHawk.Client.EmuHawk
|
|||
var dict = new Dictionary<long, long>();
|
||||
var range = new MutableRange<long>(addresses[0], addresses[0] + addresses.Count - 1);
|
||||
|
||||
switch (DataSize)
|
||||
switch (dataSize)
|
||||
{
|
||||
default:
|
||||
case 1:
|
||||
|
|
Loading…
Reference in New Issue