|
From: Yoda-JM <yo...@us...> - 2010-04-10 12:46:41
|
Module: performous
Branch: master
Commit: b89d8c72cc3ae98ac1fa1eb54d16d5df755ed56b
Author: Vincent Le Ligeour <yo...@us...>
Date: Sat Apr 10 14:46:19 2010 +0200
Fixed copy/paste error disabling drums track mute
---
game/songparser-ini.cc | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/game/songparser-ini.cc b/game/songparser-ini.cc
index 8542e32..679f991 100644
--- a/game/songparser-ini.cc
+++ b/game/songparser-ini.cc
@@ -103,7 +103,7 @@ void SongParser::iniParseHeader() {
} else if (regex_match(name.c_str(), match, audiofile_bass)) {
testAndAdd(s, TrackName::BASS, name);
} else if (regex_match(name.c_str(), match, audiofile_drums)) {
- testAndAdd(s, TrackName::GUITAR, name);
+ testAndAdd(s, TrackName::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...
|