https://bugs.winehq.org/show_bug.cgi?id=48965
--- Comment #16 from Marko Friedemann mfr@bmx-chemnitz.de --- OK, so I compiled wine-6.0 today and ran the game with the debug flags you requested.
I ran it once on an wine-6.0 as-is from git, and once with my patches applied (did not revert the commit 1bc9c4fdb2e6c27621 but instead just changed the loop to run through the range as before that commit):
- for (vkey = 1; vkey <= 0xff; vkey++) + for (vkey = VK_LSHIFT; vkey <= VK_RMENU; vkey++)
With both version, I started the game, then pressed, in sequence: ALT + 1, 2, 3 (without releasing ALT), then released ALT CLTRL + 1, 2, 3 (without releasing CTRL), then released CTRL 1, 2, 3
Log files attached above this comment.
Regards, HTH, M.