https://bugs.winehq.org/show_bug.cgi?id=56364
--- Comment #3 from Fabian Maurer dark.shadow4@web.de --- When I replace your messageloop (the whole wile(1)) with the following code it works: ``` while (GetMessage(&Msg, NULL, 0, 0)) { TranslateMessage(&Msg); DispatchMessage(&Msg); } ```
Your code is doing a busy wait, not sure if that is normal.
Fun fact: In vanilla wine this issue only occurs when I delete my WINEPREFIX and then run the command.
Will bisect staging tomorrow (or so).