Skip to content

Commit

Permalink
Merge pull request #490 from whitingjp/master
Browse files Browse the repository at this point in the history
Changed 'Dropped frames' log level back down from WARNING to DEBUG
  • Loading branch information
thp committed Apr 24, 2024
2 parents 1ac3148 + 6ba0574 commit bf4460f
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 bf4460f

Please sign in to comment.