Skip to content

Commit

Permalink
fixed a test
Browse files Browse the repository at this point in the history
  • Loading branch information
georgemoralis committed Aug 28, 2024
1 parent da6fa8c commit ddd352f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/libraries/mouse/mouse.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ int PS4_SYSV_ABI sceMouseRead(s32 handle, OrbisMouseData* pData, s32 num) {

for (int i = 0; i < ret_num; i++) {
pData[i].buttons = states[i].buttonsState;
pData[i].connected = true;
pData[i].connected = connected;
pData[i].timestamp = states[i].time;
pData[i].xAxis = 0;
pData[i].yAxis = 0;
Expand Down

0 comments on commit ddd352f

Please sign in to comment.