From fbcac2598a152cb5d46178af10ae93bff3254d93 Mon Sep 17 00:00:00 2001 From: Scott Mansell Date: Sun, 27 Mar 2016 09:02:52 +1300 Subject: [PATCH] Use a sane default for the controller update rate. Previously the default queryed the controller 4500 times a second, Wasn't really a problem for most games as they set it to a sane value. But fifoplayer didn't, and so in my profile dolphin spends 12% of the cpu time reading the controllers. This new default value (I just took what the gamecube bios set) drops that to 1.2% of cpu time and increase the framerate of the silent hill fifo by 10-12% --- Source/Core/Core/HW/SI.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/Core/HW/SI.cpp b/Source/Core/Core/HW/SI.cpp index 7c0e11801b..1bbc33c771 100644 --- a/Source/Core/Core/HW/SI.cpp +++ b/Source/Core/Core/HW/SI.cpp @@ -282,7 +282,7 @@ void Init() } g_Poll.Hex = 0; - g_Poll.X = 7; + g_Poll.X = 492; g_ComCSR.Hex = 0;