From 7fb6ff9d80a652e57eb825cb29c9f5eeb24a5d87 Mon Sep 17 00:00:00 2001 From: KM198912 <55886806+KM198912@users.noreply.github.com> Date: Mon, 30 Nov 2020 13:15:20 +0100 Subject: [PATCH] Update CPU.cs add .Trim() to the returned string because otherwise it is shifted to the right using Console.WriteLine --- source/Cosmos.Core/CPU.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/Cosmos.Core/CPU.cs b/source/Cosmos.Core/CPU.cs index 876a8b04f..8ae0233ed 100644 --- a/source/Cosmos.Core/CPU.cs +++ b/source/Cosmos.Core/CPU.cs @@ -294,7 +294,7 @@ namespace Cosmos.Core if (!(rs == "")) { - return rs; + return rs.Trim(); } else {