Skip to content

Commit

Permalink
Fixed PlayStation controller rumble not being cleared at game exit.
Browse files Browse the repository at this point in the history
  • Loading branch information
Kaldaien committed Dec 29, 2024
1 parent bd5cda4 commit bc64a57
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
+ Added option to have ADHD mode disengage when Alt-Tabbing to apps on
the same display as the game.
+ ADHD mode disables Aspect Ratio Stretch now.
+ Fixed PlayStation controller rumble not being cleared at game exit.

24.12.29.1
==========
Expand Down
8 changes: 4 additions & 4 deletions src/input/hid_reports/playstation.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2560,8 +2560,8 @@ SK_HID_PlayStationDevice::write_output_report (bool force)
if (reset_finished) bFinished = false;
};

DWORD dwWaitState = WAIT_FAILED;
while (dwWaitState != WAIT_OBJECT_0)
DWORD dwWaitState = WAIT_FAILED;
while (true)
{
if (bQuit)
break;
Expand Down Expand Up @@ -3307,8 +3307,8 @@ SK_HID_PlayStationDevice::write_output_report (bool force)
if (reset_finished) bFinished = false;
};

DWORD dwWaitState = WAIT_FAILED;
while (dwWaitState != WAIT_OBJECT_0)
DWORD dwWaitState = WAIT_FAILED;
while (true)
{
if (bQuit)
break;
Expand Down

0 comments on commit bc64a57

Please sign in to comment.