diff options
author | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2009-06-08 20:45:20 +0200 |
---|---|---|
committer | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2009-06-08 20:47:20 +0200 |
commit | 25875637a2b0b1561e2cf69b94674ee74d8031a3 (patch) | |
tree | c034c9da2e8c82ba5743bd9c4ce19d5114b926cb | |
parent | 758282624f77988540062c5fb60128716aa0377b (diff) | |
download | mana-25875637a2b0b1561e2cf69b94674ee74d8031a3.tar.gz mana-25875637a2b0b1561e2cf69b94674ee74d8031a3.tar.bz2 mana-25875637a2b0b1561e2cf69b94674ee74d8031a3.tar.xz mana-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
-rw-r--r-- | src/main.cpp | 2 |
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; |