From efcf1a88cd0d0bee3973705b5975827be97f5a3a Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Fri, 6 Jan 2017 08:51:53 -0500 Subject: particles, rain --- include/common.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include/common.hpp') diff --git a/include/common.hpp b/include/common.hpp index 19af420..71039c7 100644 --- a/include/common.hpp +++ b/include/common.hpp @@ -91,11 +91,11 @@ struct vec2 { } template - const vec2 operator+(const T &n) { + vec2 operator+(T n) const { return vec2 (x + n, y + n); } - const vec2 operator+(const vec2 &v) { + vec2 operator+(const vec2 &v) { return vec2 (x + v.x, y + v.y); } -- cgit v1.2.3