From 0f02fe868c7c30c91c0a0a1e1bb6457a34e0f10b Mon Sep 17 00:00:00 2001 From: Denis Benato Date: Mon, 15 Dec 2025 19:10:18 +0100 Subject: [PATCH] Fix: re-add G835L --- rog-anime/src/usb.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/rog-anime/src/usb.rs b/rog-anime/src/usb.rs index e4c14c0f..96e08dd6 100644 --- a/rog-anime/src/usb.rs +++ b/rog-anime/src/usb.rs @@ -253,6 +253,8 @@ pub fn get_anime_type() -> AnimeType { AnimeType::GU604 } else if board_name.contains("G635L") { AnimeType::G635L + } else if board_name.contains("G835L") { + AnimeType::G835L } else { AnimeType::Unsupported }