diff options
author | Loïc Blot <loic.blot@unix-experience.fr> | 2019-03-12 16:53:21 +0100 |
---|---|---|
committer | Loïc Blot <loic.blot@unix-experience.fr> | 2019-03-12 16:53:21 +0100 |
commit | e22a69d61a04624fe1eca818740b90dbb958e658 (patch) | |
tree | c86907e0a05b2d146d031c712b93c1aaef1332f8 /src/client/game.cpp | |
parent | 38f6e7a1981a8dcba9bfa9aa32ca77cd19a960aa (diff) | |
download | minetest-e22a69d61a04624fe1eca818740b90dbb958e658.tar.gz minetest-e22a69d61a04624fe1eca818740b90dbb958e658.tar.bz2 minetest-e22a69d61a04624fe1eca818740b90dbb958e658.zip |
Drop GUIConfirmRegistration::m_address unused field
Diffstat (limited to 'src/client/game.cpp')
-rw-r--r-- | src/client/game.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/game.cpp b/src/client/game.cpp index 37680dda3..192c899d9 100644 --- a/src/client/game.cpp +++ b/src/client/game.cpp @@ -1545,7 +1545,7 @@ bool Game::connectToServer(const std::string &playername, } else { registration_confirmation_shown = true; (new GUIConfirmRegistration(guienv, guienv->getRootGUIElement(), -1, - &g_menumgr, client, playername, password, *address, connection_aborted))->drop(); + &g_menumgr, client, playername, password, connection_aborted))->drop(); } } else { wait_time += dtime; |