|
From: Lasse Kärkkäi. <tr...@us...> - 2009-07-26 07:27:29
|
Module: performous
Branch: master
Commit: 7819e620a847b607c86e51788502e52a9279baf3
Author: Lasse Karkkainen <tro...@tr...>
Date: Sun Jul 26 10:27:02 2009 +0300
Silence a compiler warning...
---
game/layout_singer.cc | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/game/layout_singer.cc b/game/layout_singer.cc
index b4d9200..0bbab52 100644
--- a/game/layout_singer.cc
+++ b/game/layout_singer.cc
@@ -27,7 +27,7 @@ void LayoutSinger::draw(double time, Position position) {
}
// Draw the lyrics
- double linespacing;
+ double linespacing = 0.0;
Dimensions pos;
switch(position) {
case LayoutSinger::BOTTOM:
|