|
From: Jaakko N. <jni...@us...> - 2009-11-14 17:43:37
|
Module: performous
Branch: dance
Commit: 4a046a4fe623fb2ba81516bc41088c3184896c93
Author: Jaakko Nikkola <jaa...@tk...>
Date: Sat Nov 14 15:56:52 2009 +0200
some function parameters to references
---
game/songparser.hh | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/game/songparser.hh b/game/songparser.hh
index b95e93c..d874d5e 100644
--- a/game/songparser.hh
+++ b/game/songparser.hh
@@ -96,8 +96,8 @@ class SongParser {
void iniParse();
bool smCheck(std::vector<char> const& data);
void smParse();
- bool smParseField(std::string line);
- bool smParseNote(std::string line, DanceChords chords);
+ bool smParseField(std::string& line);
+ bool smParseNote(std::string& line, DanceChords& chords);
double m_prevtime;
unsigned int m_prevts;
unsigned int m_relativeShift;
|