diff options
author | Thorbjørn Lindeijer <thorbjorn@lindeijer.nl> | 2010-02-20 10:44:23 +0100 |
---|---|---|
committer | Thorbjørn Lindeijer <thorbjorn@lindeijer.nl> | 2010-02-20 10:44:23 +0100 |
commit | 9fae5cd4d041617123087bbb4cb1085c74a868aa (patch) | |
tree | 2de502b72e18c86795d45c8021268421be2c333e | |
parent | 7e31a169e40dc4bde2c0c09d168916abd2d52ea5 (diff) | |
download | mana-9fae5cd4d041617123087bbb4cb1085c74a868aa.tar.gz mana-9fae5cd4d041617123087bbb4cb1085c74a868aa.tar.bz2 mana-9fae5cd4d041617123087bbb4cb1085c74a868aa.tar.xz mana-9fae5cd4d041617123087bbb4cb1085c74a868aa.zip |
Just use Mana as the window title by default
The fact that it's the client is not interesting to most people.
-rw-r--r-- | data/branding.xml | 2 | ||||
-rw-r--r-- | src/main.cpp | 3 |
2 files changed, 2 insertions, 3 deletions
diff --git a/data/branding.xml b/data/branding.xml index 88706a68..38f74e40 100644 --- a/data/branding.xml +++ b/data/branding.xml @@ -10,7 +10,7 @@ writing a branding.xml for their servers. --> <configuration> - <option name="appName" value="Mana Client"/> + <option name="appName" value="Mana"/> <option name="appShort" value="mana"/> <option name="appIcon" value="icons/mana.png"/> <option name="loginMusic" value="Magick - Real.ogg"/> diff --git a/src/main.cpp b/src/main.cpp index 2e73f7d8..12c678be 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -368,8 +368,7 @@ static void initEngine(const Options &options) SDL_EnableUNICODE(1); SDL_EnableKeyRepeat(SDL_DEFAULT_REPEAT_DELAY, SDL_DEFAULT_REPEAT_INTERVAL); - SDL_WM_SetCaption(branding.getValue("appName", "The Mana World").c_str(), - NULL); + SDL_WM_SetCaption(branding.getValue("appName", "Mana").c_str(), NULL); ResourceManager *resman = ResourceManager::getInstance(); |