Skip to content

Commit

Permalink
made 'Dropped frames' a DEBUG log message instead of a WARNING, it us…
Browse files Browse the repository at this point in the history
…ed to be this way, and while sounding scary, dropped frames do not seem to be a problem in practice
  • Loading branch information
whitingjp committed Mar 25, 2024
1 parent 3b7d9a0 commit 6ba0574
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/psmove.c
Original file line number Diff line number Diff line change
Expand Up @@ -1463,7 +1463,7 @@ psmove_poll(PSMove *move)
**/
int seq = (move->input.common.buttons4 & 0x0F);
if (seq != ((oldseq + 1) % 16)) {
PSMOVE_WARNING("Dropped frames (seq %d -> %d)", oldseq, seq);
PSMOVE_DEBUG("Dropped frames (seq %d -> %d)", oldseq, seq);
}

if (move->orientation_enabled) {
Expand Down

0 comments on commit 6ba0574

Please sign in to comment.