diff options
author | Andrei Karas <akaras@inbox.ru> | 2011-02-02 16:49:27 +0200 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2011-02-02 16:49:27 +0200 |
commit | 325d7a5eb47d74239320127b5f3433ffc9851904 (patch) | |
tree | 267237542b217021a9f55c1f51952cf5573db532 | |
parent | 98940639a62e37475044385d2fe052f564fb5012 (diff) | |
download | plus-325d7a5eb47d74239320127b5f3433ffc9851904.tar.gz plus-325d7a5eb47d74239320127b5f3433ffc9851904.tar.bz2 plus-325d7a5eb47d74239320127b5f3433ffc9851904.tar.xz plus-325d7a5eb47d74239320127b5f3433ffc9851904.zip |
Fix icon path.
Was introduced in commit a7c8ff3aaaa7903db4bd126cb3504a8bf441034e.
-rw-r--r-- | src/client.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client.cpp b/src/client.cpp index d17ea73bc..251144654 100644 --- a/src/client.cpp +++ b/src/client.cpp @@ -352,7 +352,7 @@ Client::Client(const Options &options): //resman->selectSkin(); - std::string iconFile = branding.getValue("appIcon", "icons/mana"); + std::string iconFile = branding.getValue("appIcon", "icons/manaplus"); #ifdef WIN32 iconFile += ".ico"; #else |