Skip to content

Commit 4b4e63b

Browse files
committed
Remove unnamed struct
1 parent f1852c8 commit 4b4e63b

File tree

1 file changed

+9
-11
lines changed

1 file changed

+9
-11
lines changed

src/xrGame/HudItem.h

Lines changed: 9 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -67,17 +67,15 @@ class CHudItem : public CHUDState
6767
fl_inertion_allow = (1 << 3),
6868
};
6969

70-
struct
71-
{
72-
const CMotionDef* m_current_motion_def;
73-
shared_str m_current_motion;
74-
u32 m_dwMotionCurrTm;
75-
u32 m_dwMotionStartTm;
76-
u32 m_dwMotionEndTm;
77-
u32 m_startedMotionState;
78-
u8 m_started_rnd_anim_idx;
79-
bool m_bStopAtEndAnimIsRunning;
80-
};
70+
// Motion data
71+
const CMotionDef* m_current_motion_def;
72+
shared_str m_current_motion;
73+
u32 m_dwMotionCurrTm;
74+
u32 m_dwMotionStartTm;
75+
u32 m_dwMotionEndTm;
76+
u32 m_startedMotionState;
77+
u8 m_started_rnd_anim_idx;
78+
bool m_bStopAtEndAnimIsRunning;
8179

8280
public:
8381
virtual void Load(LPCSTR section);

0 commit comments

Comments
 (0)