diff options
Diffstat (limited to 'src/core/hle/ipc_helpers.h')
| -rw-r--r-- | src/core/hle/ipc_helpers.h | 5 |
1 files changed, 5 insertions, 0 deletions
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 | |||
| @@ -305,6 +305,11 @@ inline u64 RequestParser::Pop() { | |||
| 305 | } | 305 | } |
| 306 | 306 | ||
| 307 | template <> | 307 | template <> |
| 308 | inline s64 RequestParser::Pop() { | ||
| 309 | return static_cast<s64>(Pop<u64>()); | ||
| 310 | } | ||
| 311 | |||
| 312 | template <> | ||
| 308 | inline bool RequestParser::Pop() { | 313 | inline bool RequestParser::Pop() { |
| 309 | return Pop<u8>() != 0; | 314 | return Pop<u8>() != 0; |
| 310 | } | 315 | } |