From 052c096014317860041537e1f69c2d55233dc115 Mon Sep 17 00:00:00 2001 From: Denis Benato Date: Sun, 23 Nov 2025 16:56:42 +0100 Subject: [PATCH] Fix: use the correct name for nv_tgp --- rog-platform/src/asus_armoury.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rog-platform/src/asus_armoury.rs b/rog-platform/src/asus_armoury.rs index 037d6fb0..d4e4e083 100644 --- a/rog-platform/src/asus_armoury.rs +++ b/rog-platform/src/asus_armoury.rs @@ -383,7 +383,7 @@ impl From<&str> for FirmwareAttribute { "nv_dynamic_boost" => Self::NvDynamicBoost, "nv_temp_target" => Self::NvTempTarget, "nv_base_tgp" => Self::DgpuBaseTgp, - "dgpu_tgp" => Self::DgpuTgp, + "nv_tgp" => Self::DgpuTgp, "charge_mode" => Self::ChargeMode, "boot_sound" => Self::BootSound, "mcu_powersave" => Self::McuPowersave, @@ -420,7 +420,7 @@ impl From for &str { FirmwareAttribute::NvDynamicBoost => "nv_dynamic_boost", FirmwareAttribute::NvTempTarget => "nv_temp_target", FirmwareAttribute::DgpuBaseTgp => "dgpu_base_tgp", - FirmwareAttribute::DgpuTgp => "dgpu_tgp", + FirmwareAttribute::DgpuTgp => "nv_tgp", FirmwareAttribute::ChargeMode => "charge_mode", FirmwareAttribute::BootSound => "boot_sound", FirmwareAttribute::McuPowersave => "mcu_powersave",