Fix: correction to switching next fan profile

Closes #425
This commit is contained in:
Luke D. Jones
2023-12-15 11:42:13 +13:00
parent 6f39307080
commit dda6d343d9
3 changed files with 5 additions and 1 deletions

View File

@@ -278,7 +278,7 @@ pub enum PlatformPolicy {
impl PlatformPolicy {
pub const fn next(&self) -> Self {
match self {
Self::Balanced => Self::Balanced,
Self::Balanced => Self::Performance,
Self::Performance => Self::Quiet,
Self::Quiet => Self::Balanced,
}