summaryrefslogtreecommitdiffstats
path: root/src/common/math_util.h
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2020-10-22 04:14:21 +0200
committerLioncash <mathew1800@gmail.com>2020-10-22 04:14:23 +0200
commitea20b5c970cb261df93743803a227fafd5403d02 (patch)
treeb0f78e977fef8b78169a5c8df2105cd573ad21fa /src/common/math_util.h
parentMerge pull request #4811 from lioncash/warn-video (diff)
downloadyuzu-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 '')
-rw-r--r--src/common/math_util.h4
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)));
}
}