Skip to content

Commit c0cd159

Browse files
committed
Fixued issue #3 (movq should be movlps)
1 parent 3f6dd9d commit c0cd159

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

FastMath/Neslib.FastMath.Sse2_64.inc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ end;
142142
function Degrees(const ARadians: TVector2): TVector2; assembler;
143143
asm
144144
{$IF RTLVersion >= 33}
145-
movq xmm0, [ARadians]
145+
movlps xmm0, [ARadians]
146146
{$ELSE}
147147
movq xmm0, ARadians
148148
{$ENDIF}

0 commit comments

Comments
 (0)