summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBjørn Lindeijer <bjorn@lindeijer.nl>2009-06-08 20:45:20 +0200
committerBjørn Lindeijer <bjorn@lindeijer.nl>2009-06-08 20:47:20 +0200
commit25875637a2b0b1561e2cf69b94674ee74d8031a3 (patch)
treec034c9da2e8c82ba5743bd9c4ce19d5114b926cb /src
parent758282624f77988540062c5fb60128716aa0377b (diff)
downloadmana-client-25875637a2b0b1561e2cf69b94674ee74d8031a3.tar.gz
mana-client-25875637a2b0b1561e2cf69b94674ee74d8031a3.tar.bz2
mana-client-25875637a2b0b1561e2cf69b94674ee74d8031a3.tar.xz
mana-client-25875637a2b0b1561e2cf69b94674ee74d8031a3.zip
Fixed the name of the login song
The value from branding.xml isn't actually used, since it will only load a branding.xml that is located at 'data/branding.xml' relative from where you run the client. That's an issue to fix later. Mantis-issue: 714
Diffstat (limited to 'src')
-rw-r--r--src/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp
index d23d273c..bc8725ab 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -940,7 +940,7 @@ int main(int argc, char *argv[])
setupButton->setPosition(top->getWidth() - setupButton->getWidth() - 3, 3);
top->add(setupButton);
- sound.playMusic(branding.getValue("loginMusic", "Login.ogg"));
+ sound.playMusic(branding.getValue("loginMusic", "Magick - Real.ogg"));
// Initialize login data
loginData.hostname = options.serverName;