Fix FindDiffRange() check of final non-vector-sized bytes

This commit is contained in:
baldurk
2018-06-25 13:04:34 +01:00
parent 2476474ca9
commit 34e174179a
+1 -1
View File
@@ -166,7 +166,7 @@ bool FindDiffRange(void *a, void *b, size_t bufSize, size_t &diffStart, size_t &
// if we haven't even found a start, check in these bytes
if(diffStart > bufSize)
{
offs = bufSize;
offs = alignedSize;
for(size_t by = 0; by < numBytes; by++)
{