From 4f47a2edbe9aeb100d5475c50597f7d12d7ef668 Mon Sep 17 00:00:00 2001 From: Lysann Schlegel Date: Wed, 12 Dec 2012 20:58:58 +0100 Subject: [PATCH] wiiuse_wait_report: WIIUSE_DEBUG instead of WIIUSE_WARNING for dropped reports --- src/io.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/io.c b/src/io.c index e94064f..5d52747 100644 --- a/src/io.c +++ b/src/io.c @@ -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); } } }