diff options
Diffstat (limited to 'src/core/hle/function_wrappers.h')
| -rw-r--r-- | src/core/hle/function_wrappers.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/core/hle/function_wrappers.h b/src/core/hle/function_wrappers.h index 3501e45db..882a51df1 100644 --- a/src/core/hle/function_wrappers.h +++ b/src/core/hle/function_wrappers.h | |||
| @@ -188,6 +188,10 @@ template<ResultCode func(s64*, Handle, u32)> void Wrap() { | |||
| 188 | FuncReturn(retval); | 188 | FuncReturn(retval); |
| 189 | } | 189 | } |
| 190 | 190 | ||
| 191 | template<ResultCode func(Handle, u32)> void Wrap() { | ||
| 192 | FuncReturn(func(PARAM(0), PARAM(1)).raw); | ||
| 193 | } | ||
| 194 | |||
| 191 | //////////////////////////////////////////////////////////////////////////////////////////////////// | 195 | //////////////////////////////////////////////////////////////////////////////////////////////////// |
| 192 | // Function wrappers that return type u32 | 196 | // Function wrappers that return type u32 |
| 193 | 197 | ||