diff --git a/src/easymesh/easymesh-parser.y b/src/easymesh/easymesh-parser.y index 0a9c5658..1a69203c 100644 --- a/src/easymesh/easymesh-parser.y +++ b/src/easymesh/easymesh-parser.y @@ -310,7 +310,7 @@ v4: '('fv')' { $$[0] = $2; $$[1] = $2; $$[2] = $2; $$[3] = $2; } | '('fv fv fv fv')' { $$[0] = $2; $$[1] = $3; $$[2] = $4; $$[3] = $5; } ; - + /* Special types */ bv: BOOLEAN { $$ = $1; } diff --git a/src/easymesh/easymesh.cpp b/src/easymesh/easymesh.cpp index baa49683..b2a34c36 100644 --- a/src/easymesh/easymesh.cpp +++ b/src/easymesh/easymesh.cpp @@ -1233,7 +1233,7 @@ void EasyMesh::AppendTriangleDuplicateVerts(int i1, int i2, int i3, int base) //----------------------------------------------------------------------------- void EasyMesh::ComputeNormals(int start, int vcount) { - + if (BD()->IsEnabled(MeshBuildOperation::CommandExecution) && BD()->IsEnabled(MeshBuildOperation::PostBuildComputeNormals)) return; diff --git a/src/input/controller.h b/src/input/controller.h index c9fbcd77..67ee631a 100644 --- a/src/input/controller.h +++ b/src/input/controller.h @@ -81,7 +81,7 @@ public: float GetValue() const { return m_current; } /** Gets the current delta value of this axis */ float GetDelta() const { return m_current - m_previous; } - + /** Bind a physical device and axis */ void Bind(const String& device_name, const String& axis_name); /** Bind a physical device and key over this axis. The axis value will be 0 if the key is up and 1 if it's down */