Fix RawMouse patch making gamepad mouse move hook not getting called
This commit is contained in:
parent
1baa7a7351
commit
4af77130df
@ -1833,13 +1833,18 @@ namespace Components
|
||||
return gamePads[0].inUse;
|
||||
}
|
||||
|
||||
int Gamepad::CL_MouseEvent_Hk(const int x, const int y, const int dx, const int dy)
|
||||
void Gamepad::OnMouseMove(const int x, const int y, const int dx, const int dy)
|
||||
{
|
||||
if (dx != 0 || dy != 0)
|
||||
{
|
||||
gamePads[0].inUse = false;
|
||||
gpad_in_use.setRaw(false);
|
||||
}
|
||||
}
|
||||
|
||||
int Gamepad::CL_MouseEvent_Hk(const int x, const int y, const int dx, const int dy)
|
||||
{
|
||||
OnMouseMove(x, y, dx, dy);
|
||||
|
||||
// Call original function
|
||||
return Utils::Hook::Call<int(int, int, int, int)>(0x4D7C50)(x, y, dx, dy);
|
||||
|
@ -41,6 +41,8 @@ namespace Components
|
||||
public:
|
||||
Gamepad();
|
||||
|
||||
static void OnMouseMove(int x, int y, int dx, int dy);
|
||||
|
||||
private:
|
||||
static Game::ButtonToCodeMap_t buttonList[];
|
||||
static Game::StickToCodeMap_t analogStickList[4];
|
||||
|
@ -97,6 +97,7 @@ namespace Components
|
||||
Game::s_wmv->oldPos = curPos;
|
||||
ScreenToClient(Window::GetWindow(), &curPos);
|
||||
|
||||
Gamepad::OnMouseMove(curPos.x, curPos.y, dx, dy);
|
||||
auto recenterMouse = Game::CL_MouseEvent(curPos.x, curPos.y, dx, dy);
|
||||
|
||||
if (recenterMouse)
|
||||
|
Loading…
Reference in New Issue
Block a user