diff options
| author | 2014-05-17 23:37:25 -0400 | |
|---|---|---|
| committer | 2014-05-17 23:37:25 -0400 | |
| commit | 6a6c7eeccbf2e9a766ad6b942f25b3ef6e008944 (patch) | |
| tree | fe4da52d576ddd7aec12e250e14e1d77448035cc /src/core/hle/function_wrappers.h | |
| parent | ignore thumbemu 0xDEADCODE debugging catch on MCR (diff) | |
| download | yuzu-6a6c7eeccbf2e9a766ad6b942f25b3ef6e008944.tar.gz yuzu-6a6c7eeccbf2e9a766ad6b942f25b3ef6e008944.tar.xz yuzu-6a6c7eeccbf2e9a766ad6b942f25b3ef6e008944.zip | |
added stubbed function for WaitSynchronizationN
Diffstat (limited to 'src/core/hle/function_wrappers.h')
| -rw-r--r-- | src/core/hle/function_wrappers.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/core/hle/function_wrappers.h b/src/core/hle/function_wrappers.h index 61790e5a3..24cc74fc6 100644 --- a/src/core/hle/function_wrappers.h +++ b/src/core/hle/function_wrappers.h | |||
| @@ -750,6 +750,11 @@ template<int func(void*, u32, u32, u32, u32, u32)> void WrapI_VUUUUU(){ | |||
| 750 | } | 750 | } |
| 751 | 751 | ||
| 752 | template<int func(u32, s64)> void WrapI_US64() { | 752 | template<int func(u32, s64)> void WrapI_US64() { |
| 753 | int retval = func(PARAM(0), PARAM64(2)); | 753 | int retval = func(PARAM(0), PARAM64(1)); |
| 754 | RETURN(retval); | ||
| 755 | } | ||
| 756 | |||
| 757 | template<int func(void*, void*, u32, u32, s64)> void WrapI_VVUUS64() { | ||
| 758 | int retval = func(Memory::GetPointer(PARAM(0)), Memory::GetPointer(PARAM(1)), PARAM(2), PARAM(3), PARAM(4)); | ||
| 754 | RETURN(retval); | 759 | RETURN(retval); |
| 755 | } | 760 | } |