From 4277eaea5e02fb69d64193a0395357e2c346afdb Mon Sep 17 00:00:00 2001 From: David Lawrence Ramsey Date: Sat, 21 Nov 2009 12:37:25 -0600 Subject: Add formatting fixes. This mostly puts && and || on the proper lines, per the style guide. --- crawl-ref/source/ray.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'crawl-ref/source/ray.cc') diff --git a/crawl-ref/source/ray.cc b/crawl-ref/source/ray.cc index e4d8e465ff..6c802f4c6c 100644 --- a/crawl-ref/source/ray.cc +++ b/crawl-ref/source/ray.cc @@ -177,8 +177,8 @@ static bool _advance_from_non_diamond(geom::ray *r) // The ray is in a legal state to be passed around externally. bool ray_def::_valid() const { - return (on_corner && is_corner(r.start) && bad_corner(r) || - !on_corner && in_diamond_int(r.start)); + return (on_corner && is_corner(r.start) && bad_corner(r) + || !on_corner && in_diamond_int(r.start)); } geom::vector _normalize(const geom::vector &v) -- cgit v1.2.3-54-g00ecf