From 00b6278e47ba61dc11709b043ca2d8f8e9237464 Mon Sep 17 00:00:00 2001 From: Xottab-DUTY Date: Thu, 7 Jun 2018 16:30:40 +0500 Subject: [PATCH] xrGame/player_hud.h: changed initialization order in constructor --- src/xrGame/player_hud.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/xrGame/player_hud.h b/src/xrGame/player_hud.h index fcf0fa6c0ff..ab39077b576 100644 --- a/src/xrGame/player_hud.h +++ b/src/xrGame/player_hud.h @@ -72,9 +72,9 @@ struct attachable_hud_item player_hud_motion_container m_hand_motions; - attachable_hud_item(player_hud* pparent) : m_parent(pparent), m_parent_hud_item(nullptr), - m_model(nullptr), m_attach_place_idx(0), - m_upd_firedeps_frame(u32(-1)) {} + attachable_hud_item(player_hud* pparent) : m_parent(pparent), m_upd_firedeps_frame(u32(-1)), + m_parent_hud_item(nullptr), m_model(nullptr), + m_attach_place_idx(0) {} ~attachable_hud_item(); void load(const shared_str& sect_name);