소스 검색

AmigaOS4: fix compilation for double UTF8Encode in library unit and system

Marcus Sackrow 3 년 전
부모
커밋
41e32d0fba
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      packages/rtl-console/src/inc/video.inc

+ 1 - 1
packages/rtl-console/src/inc/video.inc

@@ -312,7 +312,7 @@ function ExtendedGraphemeCluster2LegacyChar(const EGC: UnicodeString; CodePage:
     var
       tmpS: RawByteString;
     begin
-      tmpS:=UTF8Encode(EGC);
+      tmpS:=System.UTF8Encode(EGC);
       System.SetCodePage(tmpS,CodePage,True);
       if Length(tmpS)=1 then
         Result:=tmpS[1]