From 51f22419eeebaea3b0da640148b45edf966e0d57 Mon Sep 17 00:00:00 2001 From: Barinade Date: Sat, 13 Feb 2021 01:48:42 -0600 Subject: [PATCH] Trigger toasties when hitting the 250th note (or what you set it to) .... mhmm --- src/Etterna/Models/ScoreKeepers/ScoreKeeperNormal.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Etterna/Models/ScoreKeepers/ScoreKeeperNormal.cpp b/src/Etterna/Models/ScoreKeepers/ScoreKeeperNormal.cpp index 95c15f65e0..c7d1dab328 100644 --- a/src/Etterna/Models/ScoreKeepers/ScoreKeeperNormal.cpp +++ b/src/Etterna/Models/ScoreKeepers/ScoreKeeperNormal.cpp @@ -620,7 +620,7 @@ ScoreKeeperNormal::HandleTapRowScore(const NoteData& nd, int iRow) // Toasty combo if (scoreOfLastTap >= m_toasty_min_tns) { m_cur_toasty_combo += iNumTapsInRow; - if (m_cur_toasty_combo > m_next_toasty_at) { + if (m_cur_toasty_combo >= m_next_toasty_at) { ++m_cur_toasty_level; // Broadcast the message before posting the screen message so that // the transition layer can catch the message to know the level and