25 Feb
2024
25 Feb
'24
2:42 a.m.
https://bugs.winehq.org/show_bug.cgi?id=56364 --- Comment #3 from Fabian Maurer <dark.shadow4(a)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). -- Do not reply to this email, post in Bugzilla using the above URL to reply. You are receiving this mail because: You are watching all bug changes.