1
0
Fork 0
mirror of https://github.com/luanti-org/luanti.git synced 2025-08-06 17:41:04 +00:00

Drop GUIConfirmRegistration::m_address unused field

This commit is contained in:
Loïc Blot 2019-03-12 16:53:21 +01:00
parent 38f6e7a198
commit e22a69d61a
3 changed files with 4 additions and 5 deletions

View file

@ -38,10 +38,10 @@ const int ID_cancel = 265;
GUIConfirmRegistration::GUIConfirmRegistration(gui::IGUIEnvironment *env,
gui::IGUIElement *parent, s32 id, IMenuManager *menumgr, Client *client,
const std::string &playername, const std::string &password,
const std::string &address, bool *aborted) :
bool *aborted) :
GUIModalMenu(env, parent, id, menumgr),
m_client(client), m_playername(playername), m_password(password),
m_address(address), m_aborted(aborted)
m_aborted(aborted)
{
#ifdef __ANDROID__
m_touchscreen_visible = false;