|
From: Peque <ms...@us...> - 2010-01-07 20:30:45
|
Module: performous
Branch: master
Commit: a41fc77e0f2f1844c2319f62bc54b89966329217
Author: Miguel Sánchez de León Peque <peq...@ho...>
Date: Thu Jan 7 21:29:56 2010 +0100
Fixed notegraph: notes don't crash to the timer.
---
game/notegraph.cc | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/game/notegraph.cc b/game/notegraph.cc
index ea6714d..c9afd9c 100644
--- a/game/notegraph.cc
+++ b/game/notegraph.cc
@@ -86,7 +86,7 @@ void NoteGraph::draw(double time, Database const& database, Position position) {
dimensions.stretch(1.0, 0.50).center();
break;
case NoteGraph::TOP:
- dimensions.stretch(1.0, 0.40).bottom(0.0);
+ dimensions.stretch(1.0, 0.32).bottom(0.0);
break;
case NoteGraph::LEFT:
dimensions.stretch(0.50, 0.50).center().left(-0.5);
|