Fix comma

This commit is contained in:
Kvintilyanov Aleksandr 2025-03-03 17:04:28 +03:00 committed by GitHub
parent 55ba097b1c
commit 4caa90186d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -20,7 +20,7 @@ namespace PowerControl.Options
}
// dissalow to use fps limits lower than 15
string[] allowedLimits = Array.FindAll(availableLimits, val => val != null && Int32.Parse(val) >= 15)
string[] allowedLimits = Array.FindAll(availableLimits, val => val != null && Int32.Parse(val) >= 15);
return allowedLimits;
},