Clear all widgets pointer when unloading track screen

This fixed crash after changing resolution and then spectate the game,
which m_timer is previous value
This commit is contained in:
Benau 2019-11-01 19:16:23 +08:00
parent 033933d3a2
commit 48f4088894

View File

@ -206,6 +206,11 @@ void TracksScreen::unloaded()
{
delete m_track_icons;
m_track_icons = NULL;
m_timer = NULL;
m_vote_list = NULL;
m_selected_track = NULL;
m_laps = NULL;
m_reversed = NULL;
} // unloaded
// -----------------------------------------------------------------------------