mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Fix parameter values in func wrapper.
This commit is contained in:
parent
a6dabfb5d2
commit
db7e90c23e
1 changed files with 2 additions and 2 deletions
|
@ -77,8 +77,8 @@ template<u32 func(u32, u64, u32, u32)> void WrapU_UU64UU() {
|
|||
}
|
||||
|
||||
template<int func(int, int, const char*, u64)> void WrapI_IICU64() {
|
||||
u64 param_three = currentMIPS->r[7];
|
||||
param_three |= (u64)(currentMIPS->r[8]) << 32;
|
||||
u64 param_three = currentMIPS->r[8];
|
||||
param_three |= (u64)(currentMIPS->r[9]) << 32;
|
||||
int retval = func(PARAM(0), PARAM(1), Memory::GetCharPointer(PARAM(2)), param_three);
|
||||
RETURN(retval);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue