mirror of
https://github.com/hedge-dev/UnleashedRecomp.git
synced 2025-12-21 07:22:21 +00:00
input_patches: add missing hook functions
This commit is contained in:
parent
fde108178d
commit
614106c868
1 changed files with 10 additions and 0 deletions
|
|
@ -28,6 +28,16 @@ void PostureDPadSupportMidAsmHook(PPCRegister& pPadState, PPCRegister& x, PPCReg
|
||||||
SetDPadAnalogDirectionY(pPadState, y, true);
|
SetDPadAnalogDirectionY(pPadState, y, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void PostureDPadSupportXMidAsmHook(PPCRegister& pPadState, PPCRegister& x)
|
||||||
|
{
|
||||||
|
SetDPadAnalogDirectionX(pPadState, x, false);
|
||||||
|
}
|
||||||
|
|
||||||
|
void PostureDPadSupportYMidAsmHook(PPCRegister& pPadState, PPCRegister& y)
|
||||||
|
{
|
||||||
|
SetDPadAnalogDirectionY(pPadState, y, false);
|
||||||
|
}
|
||||||
|
|
||||||
void PostureDPadSupportPathLocalMidAsmHook(PPCRegister& pPadState, PPCRegister& x, PPCRegister& y)
|
void PostureDPadSupportPathLocalMidAsmHook(PPCRegister& pPadState, PPCRegister& x, PPCRegister& y)
|
||||||
{
|
{
|
||||||
SetDPadAnalogDirectionX(pPadState, x, false);
|
SetDPadAnalogDirectionX(pPadState, x, false);
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue