diff options
| author | untodesu <kirill@untode.su> | 2025-03-15 19:45:36 +0500 |
|---|---|---|
| committer | untodesu <kirill@untode.su> | 2025-03-15 19:45:36 +0500 |
| commit | f7fbca1200015ddfd4de491e6c52996e6a3353d2 (patch) | |
| tree | f43f9c9005ed86f7ac6b94628915889f2cb56611 /game/client/session.cc | |
| parent | 0a396cde7f9a629038e1d7f85e582155744bc7c7 (diff) | |
| download | voxelius-f7fbca1200015ddfd4de491e6c52996e6a3353d2.tar.bz2 voxelius-f7fbca1200015ddfd4de491e6c52996e6a3353d2.zip | |
After a year finally add direct connection screen
Diffstat (limited to 'game/client/session.cc')
| -rw-r--r-- | game/client/session.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/game/client/session.cc b/game/client/session.cc index 33e27b5..3371889 100644 --- a/game/client/session.cc +++ b/game/client/session.cc @@ -244,7 +244,7 @@ void session::connect(const char *host, std::uint16_t port, const char *password globals::gui_screen = GUI_PLAY_MENU; }); - globals::gui_screen = GUI_PROGRESS; + globals::gui_screen = GUI_PROGRESS_BAR; } void session::disconnect(const char *reason) @@ -292,7 +292,7 @@ void session::send_login_request(void) server_password_hash = UINT64_MAX; progress_bar::set_title("connecting.logging_in"); - globals::gui_screen = GUI_PROGRESS; + globals::gui_screen = GUI_PROGRESS_BAR; } bool session::is_ingame(void) |
