Parcourir la source

Fixed UTF8 characters in output panel

thareh il y a 2 ans
Parent
commit
a8d8ceb751
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      maxide.bmx

+ 1 - 1
maxide.bmx

@@ -4068,7 +4068,7 @@ Type TOutputPanel Extends TToolPanel	'used build and run
 
 		bytes=pipe.ReadPipe()
 		If bytes
-			line$=String.FromBytes(bytes,Len bytes)
+			line$=String.FromUTF8Bytes(bytes,Len bytes)
 			line=line.Replace(Chr(13),"")
 			Write line
 		EndIf