From 7bffae0812bfb1963fa14b8a80cd1126800711bd Mon Sep 17 00:00:00 2001 From: Jools Wills Date: Sat, 3 Oct 2015 20:20:33 +0100 Subject: [PATCH] change hold to skip timer to 1 second. This means the countdown message never shows, but it says at the top to hold to skip and this makes it a lot more convenient to set up snes style controllers. Has been tested by herbfaargus also, who agreed it's an improvement. #6 --- es-core/src/guis/GuiInputConfig.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/es-core/src/guis/GuiInputConfig.cpp b/es-core/src/guis/GuiInputConfig.cpp index d0f311a25..78f598ff1 100644 --- a/es-core/src/guis/GuiInputConfig.cpp +++ b/es-core/src/guis/GuiInputConfig.cpp @@ -130,7 +130,7 @@ static const char* inputIcon[inputCount] = using namespace Eigen; -#define HOLD_TO_SKIP_MS 2500 +#define HOLD_TO_SKIP_MS 1000 GuiInputConfig::GuiInputConfig(Window* window, InputConfig* target, bool reconfigureAll, const std::function& okCallback) : GuiComponent(window), mBackground(window, ":/frame.png"), mGrid(window, Vector2i(1, 7)),