1
Fork 0
mirror of https://github.com/RGBCube/superfreq synced 2025-07-27 17:07:44 +00:00

cpu: add alternative EPP string formats for better compat

This commit is contained in:
NotAShelf 2025-05-16 02:20:09 +03:00
parent 3d490db734
commit df5ae64c44
No known key found for this signature in database
GPG key ID: 29D95B64378DB4BF

View file

@ -246,7 +246,9 @@ fn get_available_epp_values() -> Result<Vec<String>> {
"default".to_string(),
"performance".to_string(),
"balance_performance".to_string(),
"balance_performance".replace('_', "-"),
"balance_power".to_string(),
"balance_power".replace('_', "-"),
"power".to_string(),
]);
}