Disable shutdown/init for now when switching mods, as there seems to be some race condition
This commit is contained in:
parent
0783533932
commit
99d4f294f4
1 changed files with 4 additions and 4 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue