diff options
author | Lioncash <mathew1800@gmail.com> | 2020-10-22 04:14:21 +0200 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2020-10-22 04:14:23 +0200 |
commit | ea20b5c970cb261df93743803a227fafd5403d02 (patch) | |
tree | b0f78e977fef8b78169a5c8df2105cd573ad21fa /src/common | |
parent | Merge pull request #4811 from lioncash/warn-video (diff) | |
download | yuzu-ea20b5c970cb261df93743803a227fafd5403d02.tar yuzu-ea20b5c970cb261df93743803a227fafd5403d02.tar.gz yuzu-ea20b5c970cb261df93743803a227fafd5403d02.tar.bz2 yuzu-ea20b5c970cb261df93743803a227fafd5403d02.tar.lz yuzu-ea20b5c970cb261df93743803a227fafd5403d02.tar.xz yuzu-ea20b5c970cb261df93743803a227fafd5403d02.tar.zst yuzu-ea20b5c970cb261df93743803a227fafd5403d02.zip |
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common/math_util.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/math_util.h b/src/common/math_util.h index 7cec80d57..4c38d8040 100644 --- a/src/common/math_util.h +++ b/src/common/math_util.h @@ -27,7 +27,7 @@ struct Rectangle { if constexpr (std::is_floating_point_v<T>) { return std::abs(right - left); } else { - return std::abs(static_cast<std::make_signed_t<T>>(right - left)); + return static_cast<T>(std::abs(static_cast<std::make_signed_t<T>>(right - left))); } } @@ -35,7 +35,7 @@ struct Rectangle { if constexpr (std::is_floating_point_v<T>) { return std::abs(bottom - top); } else { - return std::abs(static_cast<std::make_signed_t<T>>(bottom - top)); + return static_cast<T>(std::abs(static_cast<std::make_signed_t<T>>(bottom - top))); } } |