March 19, 2026
11:18 a.m.
Rémi Bernon (@rbernon) commented about dlls/dinput/tests/joystick8.c:
}
gi0 = (void *)0xdeadbeef; - todo_wine ok_hr( S_OK, pGameInputCreate( &gi0 ) ); - if (gi0 != (void *)0xdeadbeef) ok_ret( 0, v0_IGameInput_Release( gi0 ) ); + hr = pGameInputCreate( &gi0 ); + todo_wine ok( hr == S_OK || broken(hr == E_NOTIMPL), "Unexpected hr %#lx.\n", hr ); + if (gi0 && gi0 != (void *)0xdeadbeef) ok_ret( 0, v0_IGameInput_Release( gi0 ) );
Commit title says W.G.I but that's actually a GameInput test. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/10364#note_132759