Update CPU.cs

add .Trim() to the returned string because otherwise it is shifted to the right using Console.WriteLine
This commit is contained in:
KM198912 2020-11-30 13:15:20 +01:00 committed by GitHub
parent 00309e81bd
commit 7fb6ff9d80
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -294,7 +294,7 @@ namespace Cosmos.Core
if (!(rs == ""))
{
return rs;
return rs.Trim();
}
else
{