fix text savestates in some cores, which had been completely broken due to a typo for a bit...

This commit is contained in:
goyuken 2014-07-03 22:20:51 +00:00
parent 2ef2397cdb
commit e1d3d33307
1 changed files with 1 additions and 1 deletions

View File

@ -109,7 +109,7 @@ namespace BizHawk.Common.BufferExtensions
while (count > 0)
{
// 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--;
}
}