Browse Source

Merge pull request #81 from thareh/master

Fixed UTF8 characters in output panel
Brucey 2 years ago
parent
commit
306fde2021
1 changed files with 1 additions and 1 deletions
  1. 1 1
      maxide.bmx

+ 1 - 1
maxide.bmx

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