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.
DoomLmpImport
1 parent e1374d2 commit fda159aCopy full SHA for fda159a
src/BizHawk.Client.Common/movie/import/DoomLmpImport.cs
@@ -241,7 +241,7 @@ void ParsePlayer(int port)
241
if (turningResolution == DSDA.TurningResolution.Longtics)
242
{
243
// low byte comes first and is stored as an unsigned value
244
- controller.AcceptNewAxis($"P{port} Turning Speed Frac.", unchecked((byte) input[i++]));
+ controller.AcceptNewAxis($"P{port} Turning Speed Frac.", input[i++]);
245
}
246
controller.AcceptNewAxis($"P{port} Turning Speed", unchecked((sbyte) input[i++]));
247
0 commit comments