From: Francois Gouget fgouget@codeweavers.com
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=54557 --- dlls/winmm/tests/midi.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/dlls/winmm/tests/midi.c b/dlls/winmm/tests/midi.c index cf58e1e955a..d6f54e75f23 100644 --- a/dlls/winmm/tests/midi.c +++ b/dlls/winmm/tests/midi.c @@ -39,8 +39,9 @@ extern const char* mmsys_error(MMRESULT error); /* from wave.c */
static BOOL spurious_message(LPMSG msg) { - /* WM_DEVICECHANGE 0x0219 appears randomly */ - if(msg->message == WM_DEVICECHANGE) { + /* These messages appear randomly */ + if(msg->message == WM_DEVICECHANGE || + msg->message == WM_DWMCOLORIZATIONCOLORCHANGED) { trace("skipping spurious message %04x\n", msg->message); return TRUE; }