Simplify boolean comparison

this was getting flagged in CI but not on my machine
This commit is contained in:
YoshiRulz 2024-08-16 21:09:38 +10:00
parent 6b160d9bd0
commit 70b640240e
No known key found for this signature in database
GPG Key ID: C4DE31C245353FB7
1 changed files with 1 additions and 1 deletions

View File

@ -130,7 +130,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBA
ret.Hardware |= LibmGBA.Hardware.Tilt;
}
if (syncSettings.OverrideGbPlayerDetect is true)
if (syncSettings.OverrideGbPlayerDetect)
{
ret.Hardware |= LibmGBA.Hardware.GbPlayerDetect;
}