Make sure that m_flying is initialized when reset function is called first time during initialization.

This commit is contained in:
Deve 2018-09-22 20:54:43 +02:00
parent 8bdc45f7a3
commit c8305012f8

View File

@ -135,6 +135,7 @@ Kart::Kart (const std::string& ident, unsigned int world_kart_id,
m_fire_clicked = 0;
m_boosted_ai = false;
m_type = RaceManager::KT_AI;
m_flying = false;
m_xyz_history_size = stk_config->time2Ticks(XYZ_HISTORY_TIME);