diff options
Diffstat (limited to 'src/gui/char_server.cpp')
-rw-r--r-- | src/gui/char_server.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/gui/char_server.cpp b/src/gui/char_server.cpp index 2f86590e..268cb8bd 100644 --- a/src/gui/char_server.cpp +++ b/src/gui/char_server.cpp @@ -39,6 +39,7 @@ #include "../net/network.h" +extern Graphics *graphics; char server[30]; int showServerList = 1; @@ -153,9 +154,9 @@ void char_server() { gui->logic(); - guiGraphics->drawImage(login_wallpaper, 0, 0); + graphics->drawImage(login_wallpaper, 0, 0); gui->draw(); - guiGraphics->updateScreen(); + graphics->updateScreen(); } delete dialog; |