Explorar o código

Merge pull request #81 from thareh/master

Fixed UTF8 characters in output panel
Brucey %!s(int64=2) %!d(string=hai) anos
pai
achega
306fde2021
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  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