From 9ea907d7b7c1061b4688a7e68485da9307fbd664 Mon Sep 17 00:00:00 2001 From: The Dax Date: Sat, 14 Dec 2013 19:05:19 -0500 Subject: [PATCH] Update comment in PSPDialog::IsButtonHeld. --- Core/Dialog/PSPDialog.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Core/Dialog/PSPDialog.cpp b/Core/Dialog/PSPDialog.cpp index 7ea2779bab..c0498f95b0 100644 --- a/Core/Dialog/PSPDialog.cpp +++ b/Core/Dialog/PSPDialog.cpp @@ -139,8 +139,8 @@ bool PSPDialog::IsButtonHeld(int checkButton, int &framesHeld, int framesHeldThr return false; } - // It's considered held for dialog purposes after 30 frames (~0.5 seconds). - // Seems to give the best responsiveness. Maybe this should be configurable? + // It's considered held for dialog purposes after 30 frames (~0.5 seconds), + // and set to repeat every 10 frames, by default. if (framesHeld >= framesHeldThreshold && ((framesHeld % framesHeldRepeatRate) == 0)) return true;