From 78e7a3085aa189800c12daf05dd2c9efe11cdcba Mon Sep 17 00:00:00 2001 From: Evan Husted Date: Fri, 10 Jan 2025 21:16:31 -0600 Subject: [PATCH] add back a comment that was removed for no reason --- src/Ryujinx/AppHost.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Ryujinx/AppHost.cs b/src/Ryujinx/AppHost.cs index 910f1213e..d5b6cce50 100644 --- a/src/Ryujinx/AppHost.cs +++ b/src/Ryujinx/AppHost.cs @@ -1032,12 +1032,12 @@ namespace Ryujinx.Ava } private void MainLoop() - { + { while (UpdateFrame()) { + // Polling becomes expensive if it's not slept. Thread.Sleep(1); } - } private void RenderLoop()