소스 검색

* hopefully the final fix to #40288

marcoonthegit 2 년 전
부모
커밋
0af25e1644
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      packages/fcl-image/src/freetype.pp

+ 2 - 2
packages/fcl-image/src/freetype.pp

@@ -559,8 +559,8 @@ begin
   with Transformation do
     begin
       sincos(Angle,asin,acos);
-      yx:=round(asin)*$10000;
-      xx:=round(acos)*$10000;
+      yx:=round(asin*$10000);
+      xx:=round(acos*$10000);
       xy:=-yx; yy:=xx;
     end;
 end;