diff options
author | James Rowe <jroweboy@gmail.com> | 2016-11-05 02:58:11 -0600 |
---|---|---|
committer | James Rowe <jroweboy@gmail.com> | 2016-11-05 03:46:43 -0600 |
commit | d9305b0a074a255eb484911db70a126a6fe347b1 (patch) | |
tree | fcd629c513d4c8d217bf89069b288a39debb594f /src/common/math_util.h | |
parent | 5f72aade771ea63eaee468b09e2017dbbc5e6bef (diff) |
Add default hotkey to swap primary screens.
Also minor style changes
Diffstat (limited to 'src/common/math_util.h')
-rw-r--r-- | src/common/math_util.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/common/math_util.h b/src/common/math_util.h index 570ec8e56e..9e630d93df 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<T> Scale(const float s) const { - ASSERT(s > 0); - return Rectangle { - left, top, static_cast<T>((right + left) * s), static_cast<T>((top + bottom) * s) - }; + return Rectangle{left, top, static_cast<T>((right + left) * s), + static_cast<T>((top + bottom) * s)}; } }; |