diff options
| author | 2018-01-21 16:15:15 -0500 | |
|---|---|---|
| committer | 2018-01-21 16:15:15 -0500 | |
| commit | ab8525705bbd0ae62b567f301281ca516e7c5320 (patch) | |
| tree | 88be854c845cb826366acca96e07ccc62cc96695 /src/core/hle/ipc_helpers.h | |
| parent | Merge pull request #129 from Rozelette/master (diff) | |
| parent | file_sys: Clang format fixes. (diff) | |
| download | yuzu-ab8525705bbd0ae62b567f301281ca516e7c5320.tar.gz yuzu-ab8525705bbd0ae62b567f301281ca516e7c5320.tar.xz yuzu-ab8525705bbd0ae62b567f301281ca516e7c5320.zip | |
Merge pull request #123 from bunnei/fs
Initial implementation of RomFS filesystem and fsp-srv
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 | } |