diff options
author | Lioncash <mathew1800@gmail.com> | 2019-01-30 03:11:04 +0100 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2019-01-30 03:11:04 +0100 |
commit | 2561a79c394e66835d6ce24c0e57a22389bac282 (patch) | |
tree | 6b4bd948f94d3a786465a06da8fb1757a4a8bc3e /src/core/hle | |
parent | hle/ipc_helpers: Allow pushing signed values (diff) | |
download | yuzu-2561a79c394e66835d6ce24c0e57a22389bac282.tar yuzu-2561a79c394e66835d6ce24c0e57a22389bac282.tar.gz yuzu-2561a79c394e66835d6ce24c0e57a22389bac282.tar.bz2 yuzu-2561a79c394e66835d6ce24c0e57a22389bac282.tar.lz yuzu-2561a79c394e66835d6ce24c0e57a22389bac282.tar.xz yuzu-2561a79c394e66835d6ce24c0e57a22389bac282.tar.zst yuzu-2561a79c394e66835d6ce24c0e57a22389bac282.zip |
Diffstat (limited to 'src/core/hle')
-rw-r--r-- | src/core/hle/ipc_helpers.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/core/hle/ipc_helpers.h b/src/core/hle/ipc_helpers.h index eba2f5d02..90f276ee8 100644 --- a/src/core/hle/ipc_helpers.h +++ b/src/core/hle/ipc_helpers.h @@ -260,7 +260,6 @@ inline void ResponseBuilder::Push(u8 value) { PushRaw(value); } - template <> inline void ResponseBuilder::Push(u16 value) { PushRaw(value); |