From 723aca2bfa5b4baa019bcbd07199bdd5d58ca8ff Mon Sep 17 00:00:00 2001 From: Woazboat Date: Wed, 29 Apr 2015 01:39:08 +0200 Subject: And another cs fix I overlooked --- src/Tracer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Tracer.cpp b/src/Tracer.cpp index 249d2a6d1..56229e443 100644 --- a/src/Tracer.cpp +++ b/src/Tracer.cpp @@ -148,7 +148,7 @@ void cTracer::SetValues(const Vector3f & a_Start, const Vector3f & a_Direction) bool cTracer::Trace(const Vector3f & a_Start, const Vector3f & a_Direction, int a_Distance, bool a_LineOfSight) { - if(!a_Direction.HasNonZeroLength()) + if (!a_Direction.HasNonZeroLength()) { return false; } -- cgit v1.2.3