From 23d9271307ea59aaddc8afcdfb41d19e3aecdc04 Mon Sep 17 00:00:00 2001 From: Jason Felds Date: Sun, 19 Jul 2015 22:09:34 -0400 Subject: [PATCH] More accurate timing based on chart data. Thanks to Skypers for the assist. --- src/Player.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Player.cpp b/src/Player.cpp index 51ef2bfed0..58266cf7bb 100644 --- a/src/Player.cpp +++ b/src/Player.cpp @@ -134,8 +134,8 @@ void TimingWindowSecondsInit( size_t /*TimingWindow*/ i, RString &sNameOut, floa case TW_Attack: defaultValueOut = 0.135f; break; - case TW_Checkpoint: // similar to TW_Hold, but a little more strict typically. - defaultValueOut = 0.2f; + case TW_Checkpoint: // similar to TW_Hold, but a little more strict/accurate to Pump play. + defaultValueOut = 0.1664f; break; default: FAIL_M(ssprintf("Invalid timing window: %i", static_cast(i)));