summaryrefslogtreecommitdiffstats
path: root/src/core/hle/ipc_helpers.h
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2019-05-19 04:05:29 +0200
committerLioncash <mathew1800@gmail.com>2019-05-19 04:05:33 +0200
commit242273788a31044c554bbe060bbd5f163095816b (patch)
treea46e93fb8d49f888b9d4d4e04d07721a9717530e /src/core/hle/ipc_helpers.h
parentMerge pull request #2457 from lioncash/about (diff)
downloadyuzu-242273788a31044c554bbe060bbd5f163095816b.tar
yuzu-242273788a31044c554bbe060bbd5f163095816b.tar.gz
yuzu-242273788a31044c554bbe060bbd5f163095816b.tar.bz2
yuzu-242273788a31044c554bbe060bbd5f163095816b.tar.lz
yuzu-242273788a31044c554bbe060bbd5f163095816b.tar.xz
yuzu-242273788a31044c554bbe060bbd5f163095816b.tar.zst
yuzu-242273788a31044c554bbe060bbd5f163095816b.zip
Diffstat (limited to 'src/core/hle/ipc_helpers.h')
-rw-r--r--src/core/hle/ipc_helpers.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/ipc_helpers.h b/src/core/hle/ipc_helpers.h
index ac0e1d796..5bb139483 100644
--- a/src/core/hle/ipc_helpers.h
+++ b/src/core/hle/ipc_helpers.h
@@ -438,7 +438,7 @@ inline float RequestParser::Pop() {
template <>
inline double RequestParser::Pop() {
const u64 value = Pop<u64>();
- float real;
+ double real;
std::memcpy(&real, &value, sizeof(real));
return real;
}