From b837dec1160bffc83fd4e1d0b248f19a0395f356 Mon Sep 17 00:00:00 2001 From: Glax Date: Thu, 4 Jan 2024 20:03:02 +0100 Subject: [PATCH] Reduce refreshrate for console --- OSCCollar/ConsoleOutput.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OSCCollar/ConsoleOutput.cs b/OSCCollar/ConsoleOutput.cs index 1622195..4521ca9 100644 --- a/OSCCollar/ConsoleOutput.cs +++ b/OSCCollar/ConsoleOutput.cs @@ -65,7 +65,7 @@ public partial class OSCCollar layout["Position"].Update(new Panel(new Text(GetCoordinateSystem()))); layout["Bottom"].Update(new Text($"{_lastNilMessageSent} AvatarId: {_avatarId} Runtime: {DateTime.Now.Subtract(_programStarted)}")); displayContext.Refresh(); - await Task.Delay(100); + await Task.Delay(500); } }); }