From 8e50d6002bd12dde7e4ba4fd3da1b53864c4058c Mon Sep 17 00:00:00 2001 From: bunnei Date: Sat, 20 Jan 2018 21:32:36 -0500 Subject: fsp_srv: Various improvements to IStorage:Read implementation. --- src/core/hle/ipc_helpers.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/core/hle/ipc_helpers.h') diff --git a/src/core/hle/ipc_helpers.h b/src/core/hle/ipc_helpers.h index 4c9b0de28..a27cfbc2d 100644 --- a/src/core/hle/ipc_helpers.h +++ b/src/core/hle/ipc_helpers.h @@ -304,6 +304,11 @@ inline u64 RequestParser::Pop() { return msw << 32 | lsw; } +template <> +inline s64 RequestParser::Pop() { + return static_cast(Pop()); +} + template <> inline bool RequestParser::Pop() { return Pop() != 0; -- cgit v1.2.3