|
From: Tapio V. <aa...@us...> - 2009-12-09 19:37:12
|
Module: performous
Branch: dance
Commit: f72ee074e90f6fc23d6e94fad6ec636ab8d7ccd8
Author: Tapio Vierros <tap...@gm...>
Date: Wed Dec 9 21:36:31 2009 +0200
Fixed flipped texture coordinates in some dance arrows.
---
game/dancegraph.hh | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/game/dancegraph.hh b/game/dancegraph.hh
index 02e343f..8ae1999 100644
--- a/game/dancegraph.hh
+++ b/game/dancegraph.hh
@@ -55,7 +55,7 @@ class DanceGraph {
glutil::Color const& color(int arrow_i) const;
void dance(double time, input::Event const& ev);
void drawNote(DanceNote& note, double time);
- void drawArrow(int arrow_i, Texture& tex, float x, float y, float scale = 1.0, float ty1 = 1.0, float ty2 = 0.0);
+ void drawArrow(int arrow_i, Texture& tex, float x, float y, float scale = 1.0, float ty1 = 0.0, float ty2 = 1.0);
void drawMine(float x, float y, float rot = 0.0, float scale = 1.0);
Audio& m_audio;
Song const& m_song;
|