From d9305b0a074a255eb484911db70a126a6fe347b1 Mon Sep 17 00:00:00 2001 From: James Rowe Date: Sat, 5 Nov 2016 02:58:11 -0600 Subject: Add default hotkey to swap primary screens. Also minor style changes --- src/common/math_util.h | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'src/common/math_util.h') diff --git a/src/common/math_util.h b/src/common/math_util.h index 570ec8e56..9e630d93d 100644 --- a/src/common/math_util.h +++ b/src/common/math_util.h @@ -45,10 +45,8 @@ struct Rectangle { return Rectangle{left, top + y, right, bottom + y}; } Rectangle Scale(const float s) const { - ASSERT(s > 0); - return Rectangle { - left, top, static_cast((right + left) * s), static_cast((top + bottom) * s) - }; + return Rectangle{left, top, static_cast((right + left) * s), + static_cast((top + bottom) * s)}; } }; -- cgit v1.2.3