Disable shutdown/init for now when switching mods, as there seems to be some race condition

This commit is contained in:
Marco Cawthorne 2019-01-19 01:37:51 +01:00
parent 0783533932
commit 99d4f294f4

View file

@ -182,16 +182,16 @@ void customgame_btnactivate_start(void)
localcmd(sprintf("gamedir \"%s\"\n", games[nextgame].gamedir));
// TODO: Re-init important menu bits and bobs.
m_shutdown();
m_init();
//m_shutdown();
//m_init();
}
void customgame_btndeactivate_start(void)
{
localcmd("gamedir \"\"\n");
// TODO: Re-init important menu bits and bobs.
m_shutdown();
m_init();
//m_shutdown();
//m_init();
}
void customgame_btndone_start(void)