Skip to content

Commit fda159a

Browse files
committed
Remove no-op cast in DoomLmpImport
fixes b2c33aa
1 parent e1374d2 commit fda159a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/BizHawk.Client.Common/movie/import/DoomLmpImport.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ void ParsePlayer(int port)
241241
if (turningResolution == DSDA.TurningResolution.Longtics)
242242
{
243243
// low byte comes first and is stored as an unsigned value
244-
controller.AcceptNewAxis($"P{port} Turning Speed Frac.", unchecked((byte) input[i++]));
244+
controller.AcceptNewAxis($"P{port} Turning Speed Frac.", input[i++]);
245245
}
246246
controller.AcceptNewAxis($"P{port} Turning Speed", unchecked((sbyte) input[i++]));
247247

0 commit comments

Comments
 (0)