diff options
| author | bunnei <ericbunnie@gmail.com> | 2014-05-13 21:58:26 -0400 |
|---|---|---|
| committer | bunnei <ericbunnie@gmail.com> | 2014-05-13 21:58:26 -0400 |
| commit | b5ef630c9c3133c1452462420788076e9890bcc3 (patch) | |
| tree | e92f096682f3fd55623925e58636663f4053d24b /src/core/hle/function_wrappers.h | |
| parent | 1583d2b6f32ec6f558646284a8130c0759e93e12 (diff) | |
added CreateThread, CreateMutex, and ReleaseMutex SVC stubs (just parameter decoding for now)
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 18b01b14b..83be7648b 100644 --- a/src/core/hle/function_wrappers.h +++ b/src/core/hle/function_wrappers.h @@ -740,7 +740,7 @@ template<int func(void*, u32, void*, int)> void WrapI_VUVI(){ } template<int func(void*, u32, u32, u32, u32, u32)> void WrapI_VUUUUU(){ - u32 retval = func(Memory::GetPointer(PARAM(0)), PARAM(1), PARAM(2), PARAM(3), PARAM(4), PARAM(5)); + u32 retval = func(NULL, PARAM(0), PARAM(1), PARAM(2), PARAM(3), PARAM(4)); RETURN(retval); } |
