Fix copy-paste mistake

This commit is contained in:
gdkchan 2018-05-10 23:11:26 -03:00
parent 997c476e91
commit d5bd47a164

View file

@ -419,7 +419,7 @@ namespace ChocolArm64.Memory
}
else if (Sse2.IsSupported)
{
WriteByteUnchecked(Position, (byte)Sse2.Extract(Sse.StaticCast<float, ushort>(Value), 0));
WriteByte(Position, (byte)Sse2.Extract(Sse.StaticCast<float, ushort>(Value), 0));
}
else
{