|
From: Tapio V. <aa...@us...> - 2010-01-23 16:21:57
|
Module: performous
Branch: master
Commit: eb005de0581aeeaabb28ab6b087c4a7bdb75c45d
Author: Tapio Vierros <tap...@gm...>
Date: Sat Jan 23 18:13:07 2010 +0200
Make drum fills easier to complete (user feedback).
---
game/guitargraph.cc | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/game/guitargraph.cc b/game/guitargraph.cc
index e1b9508..52e4185 100644
--- a/game/guitargraph.cc
+++ b/game/guitargraph.cc
@@ -340,8 +340,8 @@ void GuitarGraph::updateDrumFill(double time) {
// Check if fill is over
if (m_dfIt != m_drumfills.end()) {
if (time > m_dfIt->end - past) {
- // Check if we can activate GodMode -> requires ~ 6 hits per second
- if (m_drumfillScore >= 10.0 * (m_dfIt->end - m_dfIt->begin)) activateStarpower();
+ // Check if we can activate GodMode -> requires ~ 7 hits per second
+ if (m_drumfillScore >= 7.0 * (m_dfIt->end - m_dfIt->begin)) activateStarpower();
m_drumfillScore = 0;
} else return;
} else if (canActivateStarpower()) {
|