Skip to content

Commit

Permalink
Missing part of in-game Y axis inversion workaround.
Browse files Browse the repository at this point in the history
  • Loading branch information
rdoeffinger committed Feb 28, 2018
1 parent 5424526 commit edfd9df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion impl11/ddraw/joystick.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ UINT WINAPI emulJoyGetDevCaps(UINT_PTR joy, struct tagJOYCAPSA *pjc, UINT size)
memset(pjc, 0, size);
if (g_config.JoystickEmul == 2) {
pjc->wXmax = 65536;
pjc->wYmax = 65536;
pjc->wYmax = 65535;
pjc->wZmax = 255;
pjc->wRmax = 65536;
pjc->wUmax = 65536;
Expand Down

0 comments on commit edfd9df

Please sign in to comment.