From fda159a8ca1b0e7054c062be2c554c809c7e4612 Mon Sep 17 00:00:00 2001 From: YoshiRulz Date: Wed, 21 May 2025 10:50:21 +1000 Subject: [PATCH] Remove no-op cast in `DoomLmpImport` fixes b2c33aa54 --- src/BizHawk.Client.Common/movie/import/DoomLmpImport.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/BizHawk.Client.Common/movie/import/DoomLmpImport.cs b/src/BizHawk.Client.Common/movie/import/DoomLmpImport.cs index 8dfe84a476..c3276c96f3 100644 --- a/src/BizHawk.Client.Common/movie/import/DoomLmpImport.cs +++ b/src/BizHawk.Client.Common/movie/import/DoomLmpImport.cs @@ -241,7 +241,7 @@ namespace BizHawk.Client.Common if (turningResolution == DSDA.TurningResolution.Longtics) { // low byte comes first and is stored as an unsigned value - controller.AcceptNewAxis($"P{port} Turning Speed Frac.", unchecked((byte) input[i++])); + controller.AcceptNewAxis($"P{port} Turning Speed Frac.", input[i++]); } controller.AcceptNewAxis($"P{port} Turning Speed", unchecked((sbyte) input[i++]));