Pārlūkot izejas kodu

Merge pull request #81 from thareh/master

Fixed UTF8 characters in output panel
Brucey 2 gadi atpakaļ
vecāks
revīzija
306fde2021
1 mainītis faili ar 1 papildinājumiem un 1 dzēšanām
  1. 1 1
      maxide.bmx

+ 1 - 1
maxide.bmx

@@ -4074,7 +4074,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