From 0c7cb0092bf96650c68a1a89c8e01f15ea570222 Mon Sep 17 00:00:00 2001 From: dervart Date: Fri, 13 Jun 2025 11:11:32 +0700 Subject: [PATCH] change getAntiCheatIconFilename --- portprotonqt/game_card.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/portprotonqt/game_card.py b/portprotonqt/game_card.py index 8ad4a20..54ce23b 100644 --- a/portprotonqt/game_card.py +++ b/portprotonqt/game_card.py @@ -323,9 +323,9 @@ class GameCard(QFrame): def getAntiCheatIconFilename(status: str) -> str: status = status.lower() if status in ("supported", "running"): - return "platinum-gold" + return "ac_supported" elif status in ("denied", "planned", "broken"): - return "broken" + return "ac_broken" return "" @staticmethod