wiiuse_wait_report: WIIUSE_DEBUG instead of WIIUSE_WARNING for dropped reports

This commit is contained in:
Lysann Schlegel
2012-12-12 20:58:58 +01:00
parent 2c2e47478a
commit 4f47a2edbe

View File

@@ -126,7 +126,7 @@ void wiiuse_wait_report(struct wiimote_t *wm, int report, byte *buffer, int buff
if (buffer[0] == report) {
break;
} else {
WIIUSE_WARNING("(id %i) dropping report 0x%x, waiting for 0x%x", wm->unid, buffer[0], report);
WIIUSE_DEBUG("(id %i) dropping report 0x%x, waiting for 0x%x", wm->unid, buffer[0], report);
}
}
}