Merge pull request #560 from lioncash/xy

playstation_mouse: Amend initial x value
This commit is contained in:
Connor McLaughlin 2020-06-23 19:56:43 +10:00 committed by GitHub
commit daf9afe221
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -11,7 +11,7 @@ Log_SetChannel(PlayStationMouse);
PlayStationMouse::PlayStationMouse(System* system) : m_system(system)
{
m_last_host_position_y = system->GetHostInterface()->GetDisplay()->GetMousePositionX();
m_last_host_position_x = system->GetHostInterface()->GetDisplay()->GetMousePositionX();
m_last_host_position_y = system->GetHostInterface()->GetDisplay()->GetMousePositionY();
}