diff --git a/Sources/Engine/Brushes/Brush.h b/Sources/Engine/Brushes/Brush.h index 519c70c..7458953 100644 --- a/Sources/Engine/Brushes/Brush.h +++ b/Sources/Engine/Brushes/Brush.h @@ -97,7 +97,7 @@ public: inline CBrushEdge(void) : bed_pwedWorking(NULL) {}; /* Constructor with two vertices. */ inline CBrushEdge(CBrushVertex *pbvx0, CBrushVertex *pbvx1) - : bed_pwedWorking(NULL), bed_pbvxVertex0(pbvx0), bed_pbvxVertex1(pbvx1) {}; + : bed_pbvxVertex0(pbvx0), bed_pbvxVertex1(pbvx1), bed_pwedWorking(NULL) {}; /* Clear the object. */ inline void Clear(void) {}; /* Test if this edge touches another one. */ diff --git a/Sources/Engine/Entities/EntityProperties.h b/Sources/Engine/Entities/EntityProperties.h index 99e35fe..6e51129 100644 --- a/Sources/Engine/Entities/EntityProperties.h +++ b/Sources/Engine/Entities/EntityProperties.h @@ -121,9 +121,9 @@ public: , ep_ulID (ulID ) , ep_slOffset (slOffset ) , ep_strName (strName ) + , ep_ulFlags (ulFlags ) , ep_chShortcut (chShortcut ) , ep_colColor (colColor ) - , ep_ulFlags (ulFlags ) {}; CEntityProperty(void) {}; };