diff options
author | Eugenio Favalli <elvenprogrammer@gmail.com> | 2005-03-24 19:56:46 +0000 |
---|---|---|
committer | Eugenio Favalli <elvenprogrammer@gmail.com> | 2005-03-24 19:56:46 +0000 |
commit | 0259c8d56cb54d7b058cdeff4d27d7fd371c07f1 (patch) | |
tree | 50104744515060ec31945c43b730e7c343edff86 /src/gui/char_select.cpp | |
parent | 439b263b9d23ee2065d2ba9d86ebfd6d2b75b976 (diff) | |
download | mana-client-0259c8d56cb54d7b058cdeff4d27d7fd371c07f1.tar.gz mana-client-0259c8d56cb54d7b058cdeff4d27d7fd371c07f1.tar.bz2 mana-client-0259c8d56cb54d7b058cdeff4d27d7fd371c07f1.tar.xz mana-client-0259c8d56cb54d7b058cdeff4d27d7fd371c07f1.zip |
Should fix the last commit
Diffstat (limited to 'src/gui/char_select.cpp')
-rw-r--r-- | src/gui/char_select.cpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/gui/char_select.cpp b/src/gui/char_select.cpp index 4e31a769..431297e9 100644 --- a/src/gui/char_select.cpp +++ b/src/gui/char_select.cpp @@ -27,6 +27,7 @@ #include "ok_dialog.h" #include "../graphics.h" #include "../net/protocol.h" +#include "../resources/resourcemanager.h" #include <sstream> #define NR_HAIR_STYLES 4 @@ -102,6 +103,10 @@ CharSelectDialog::CharSelectDialog(): selectButton->requestFocus(); setLocationRelativeTo(getParent()); + + ResourceManager *resman = ResourceManager::getInstance(); + login_wallpaper = resman->getImage( + "core/graphics/images/char_wallpaper.png"); } CharSelectDialog::~CharSelectDialog() @@ -217,7 +222,7 @@ void CharSelectDialog::serverCharSelect() } char_ID = RFIFOL(2); memset(map_path, '\0', 480); - strcat(map_path, "./core/maps/"); + strcat(map_path, "./data/map/"); strncat(map_path, RFIFOP(6), 479 - strlen(map_path)); map_address = RFIFOL(22); map_port = RFIFOW(26); |