fix text savestates in some cores, which had been completely broken due to a typo for a bit...
This commit is contained in:
parent
2ef2397cdb
commit
e1d3d33307
|
@ -109,7 +109,7 @@ namespace BizHawk.Common.BufferExtensions
|
||||||
while (count > 0)
|
while (count > 0)
|
||||||
{
|
{
|
||||||
// in my tests, replacing Hex2Int() with a 256 entry LUT slowed things down slightly
|
// in my tests, replacing Hex2Int() with a 256 entry LUT slowed things down slightly
|
||||||
*dst = (byte)(Hex2Int(*src++) << 4 | Hex2Int(*src++));
|
*dst++ = (byte)(Hex2Int(*src++) << 4 | Hex2Int(*src++));
|
||||||
count--;
|
count--;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue