Administrator
|
Thanks for the screenshot.
There is no default input device assigned in your screenshot.
Could you try to change in main_sr.pas at line 293:
In1Index := uos_AddFromDevIn(PlayerIndex1);
with this:
In1Index := uos_AddFromDevIn(PlayerIndex1, 6, -1, -1, -1, -1, -1, -1);
or this
In1Index := uos_AddFromDevIn(PlayerIndex1, 7, -1, -1, -1, -1, -1, -1);
or this
In1Index := uos_AddFromDevIn(PlayerIndex1, 9, -1, -1, -1, -1, -1, -1);
|