Fix copy-paste error in PNS mouse trail tracer

And also fix indentation of control flow.
This commit is contained in:
Ian McInerney 2021-12-31 00:04:11 +00:00
parent 0e9cfd0af2
commit f744ddd11d
1 changed files with 5 additions and 5 deletions

View File

@ -154,7 +154,7 @@ DIRECTION_45 MOUSE_TRAIL_TRACER::GetPosture( const VECTOR2I& aP )
if( trail.Area() > areaCutoff ) if( trail.Area() > areaCutoff )
areaOk = true; areaOk = true;
} }
DIRECTION_45 straightDirection; DIRECTION_45 straightDirection;
DIRECTION_45 diagDirection; DIRECTION_45 diagDirection;
@ -197,16 +197,16 @@ DIRECTION_45 MOUSE_TRAIL_TRACER::GetPosture( const VECTOR2I& aP )
} }
else if( diagDirection == m_lastSegDirection ) else if( diagDirection == m_lastSegDirection )
{ {
if( m_direction != straightDirection ) if( m_direction != diagDirection )
{ {
PNS_DBG( dbg, Message, wxString::Format( "Posture: forcing diagonal => %s", PNS_DBG( dbg, Message, wxString::Format( "Posture: forcing diagonal => %s",
diagDirection.Format() ) ); diagDirection.Format() ) );
} }
m_direction = diagDirection; m_direction = diagDirection;
} }
else else
{ {
switch( m_direction.Angle( m_lastSegDirection ) ) switch( m_direction.Angle( m_lastSegDirection ) )
{ {
case DIRECTION_45::ANG_HALF_FULL: case DIRECTION_45::ANG_HALF_FULL: