From 477b8798b39a01bf4a73697eefe0ae131a12d47d Mon Sep 17 00:00:00 2001 From: Robert Vollmert Date: Fri, 9 Oct 2009 10:15:39 +0200 Subject: Initialize ray.full_idx to -1 and remove outdated(?) valgrind intialization lines. --- crawl-ref/source/ray.cc | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'crawl-ref/source/ray.cc') diff --git a/crawl-ref/source/ray.cc b/crawl-ref/source/ray.cc index 35b17ab104..a4bb3b21f0 100644 --- a/crawl-ref/source/ray.cc +++ b/crawl-ref/source/ray.cc @@ -102,9 +102,8 @@ int shoot_ray(double accx, double accy, const double slope, return cellnum; } - -ray_def::ray_def() : accx(0.0), accy(0.0), slope(0.0), quadrant(0), - fullray_idx(0) +ray_def::ray_def() + : accx(0.0), accy(0.0), slope(0.0), quadrant(0), fullray_idx(-1) { } -- cgit v1.2.3-54-g00ecf