Touchscreen: Make server-sent overrides of button textures work (#14145)

This commit is contained in:
grorp 2023-12-23 14:39:42 +01:00 committed by rubenwardy
parent 1e4981c7ba
commit bd551780e7
1 changed files with 1 additions and 9 deletions

View File

@ -1428,12 +1428,6 @@ bool Game::createClient(const GameStartData &start_data)
return false;
bool could_connect, connect_aborted;
#ifdef HAVE_TOUCHSCREENGUI
if (g_touchscreengui) {
g_touchscreengui->init(texture_src);
g_touchscreengui->hide();
}
#endif
if (!connectToServer(start_data, &could_connect, &connect_aborted))
return false;
@ -1542,10 +1536,8 @@ bool Game::initGui()
-1, chat_backend, client, &g_menumgr);
#ifdef HAVE_TOUCHSCREENGUI
if (g_touchscreengui)
g_touchscreengui->show();
g_touchscreengui->init(texture_src);
#endif
return true;