diff options
| author | 2015-06-26 21:48:08 -0700 | |
|---|---|---|
| committer | 2015-07-17 00:50:53 -0700 | |
| commit | f723a498e737b077b587a0ff04e97900d9916bca (patch) | |
| tree | c8a80ecfff50bab613f053aca3690dbfcfe3ae6c /src/core/hle/function_wrappers.h | |
| parent | Merge pull request #884 from chinhodado/patch-1 (diff) | |
| download | yuzu-f723a498e737b077b587a0ff04e97900d9916bca.tar.gz yuzu-f723a498e737b077b587a0ff04e97900d9916bca.tar.xz yuzu-f723a498e737b077b587a0ff04e97900d9916bca.zip | |
Core\HLE : Fix Warning
"signed/unsigned mismatch"
Diffstat (limited to 'src/core/hle/function_wrappers.h')
| -rw-r--r-- | src/core/hle/function_wrappers.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/function_wrappers.h b/src/core/hle/function_wrappers.h index 5949cb470..ea0777438 100644 --- a/src/core/hle/function_wrappers.h +++ b/src/core/hle/function_wrappers.h | |||
| @@ -113,7 +113,7 @@ template<ResultCode func(u32)> void Wrap() { | |||
| 113 | FuncReturn(func(PARAM(0)).raw); | 113 | FuncReturn(func(PARAM(0)).raw); |
| 114 | } | 114 | } |
| 115 | 115 | ||
| 116 | template<ResultCode func(s64*, u32, u32*, s32)> void Wrap(){ | 116 | template<ResultCode func(s64*, u32, u32*, u32)> void Wrap(){ |
| 117 | FuncReturn(func((s64*)Memory::GetPointer(PARAM(0)), PARAM(1), (u32*)Memory::GetPointer(PARAM(2)), | 117 | FuncReturn(func((s64*)Memory::GetPointer(PARAM(0)), PARAM(1), (u32*)Memory::GetPointer(PARAM(2)), |
| 118 | (s32)PARAM(3)).raw); | 118 | (s32)PARAM(3)).raw); |
| 119 | } | 119 | } |