We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 406f329 commit 384e194Copy full SHA for 384e194
Source/RunActivity/Viewer3D/UserInputRailDriver.cs
@@ -120,7 +120,7 @@ public RailDriverState(Game game)
120
for (int i=0; i<settings.UserCommands.Length; i++)
121
{
122
byte command = settings.UserCommands[i];
123
- if (command != 0 && command != byte.MaxValue) Commands.Add((UserCommand)i, new RailDriverButton(command));
+ if (command >= 0 && command != byte.MaxValue) Commands.Add((UserCommand)i, new RailDriverButton(command));
124
}
125
126
0 commit comments