summaryrefslogtreecommitdiffstats
path: root/src/common/swap.h
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2020-10-15 20:49:45 +0200
committerLioncash <mathew1800@gmail.com>2020-10-18 01:50:39 +0200
commitbe1954e04cb5a0c3a526f78ed5490a5e65310280 (patch)
tree267db7ae4be88dbbc288fa605e35d4a2a13839f6 /src/common/swap.h
parentMerge pull request #4787 from lioncash/conversion (diff)
downloadyuzu-be1954e04cb5a0c3a526f78ed5490a5e65310280.tar
yuzu-be1954e04cb5a0c3a526f78ed5490a5e65310280.tar.gz
yuzu-be1954e04cb5a0c3a526f78ed5490a5e65310280.tar.bz2
yuzu-be1954e04cb5a0c3a526f78ed5490a5e65310280.tar.lz
yuzu-be1954e04cb5a0c3a526f78ed5490a5e65310280.tar.xz
yuzu-be1954e04cb5a0c3a526f78ed5490a5e65310280.tar.zst
yuzu-be1954e04cb5a0c3a526f78ed5490a5e65310280.zip
Diffstat (limited to '')
-rw-r--r--src/common/swap.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/common/swap.h b/src/common/swap.h
index 7665942a2..8c68c1f26 100644
--- a/src/common/swap.h
+++ b/src/common/swap.h
@@ -504,35 +504,35 @@ bool operator==(const S& p, const swap_struct_t<T, F> v) {
template <typename T>
struct swap_64_t {
static T swap(T x) {
- return static_cast<T>(Common::swap64(x));
+ return static_cast<T>(Common::swap64(static_cast<u64>(x)));
}
};
template <typename T>
struct swap_32_t {
static T swap(T x) {
- return static_cast<T>(Common::swap32(x));
+ return static_cast<T>(Common::swap32(static_cast<u32>(x)));
}
};
template <typename T>
struct swap_16_t {
static T swap(T x) {
- return static_cast<T>(Common::swap16(x));
+ return static_cast<T>(Common::swap16(static_cast<u16>(x)));
}
};
template <typename T>
struct swap_float_t {
static T swap(T x) {
- return static_cast<T>(Common::swapf(x));
+ return static_cast<T>(Common::swapf(static_cast<float>(x)));
}
};
template <typename T>
struct swap_double_t {
static T swap(T x) {
- return static_cast<T>(Common::swapd(x));
+ return static_cast<T>(Common::swapd(static_cast<double>(x)));
}
};