Remove no-op cast in `DoomLmpImport`

fixes b2c33aa54
This commit is contained in:
YoshiRulz 2025-05-21 10:50:21 +10:00
parent e1374d27d2
commit fda159a8ca
No known key found for this signature in database
GPG Key ID: C4DE31C245353FB7
1 changed files with 1 additions and 1 deletions

View File

@ -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++]));