|
From: Lasse Kärkkäi. <tr...@us...> - 2010-01-21 06:56:22
|
Module: performous
Branch: master
Commit: 4f46f3976bfad5346bad6d149b6928256d357575
Author: Lasse Karkkainen <tro...@tr...>
Date: Thu Jan 21 08:56:10 2010 +0200
Removed debug printout
---
game/songparser-ini.cc | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/game/songparser-ini.cc b/game/songparser-ini.cc
index d0eab06..9b28339 100644
--- a/game/songparser-ini.cc
+++ b/game/songparser-ini.cc
@@ -85,8 +85,10 @@ void SongParser::iniParse() {
testAndAdd(s, "drums", name);
} else if (regex_match(name.c_str(), match, audiofile_vocals)) {
testAndAdd(s, "vocals", name);
+#if 0 // TODO: process preview.ogg properly? In any case, do not print debug to console...
} else if (regex_match(name.c_str(), match, audiofile_other)) {
std::cout << "Found unknown ogg file: " << name << std::endl;
+#endif
}
}
|