From c3a90a1f595e423a95129a57249e3b4b5d022589 Mon Sep 17 00:00:00 2001 From: Zephyron Date: Sun, 1 Feb 2026 14:16:37 +1000 Subject: [PATCH] fix(ui): Correct GC Aggressiveness tooltip to match actual options The tooltip described 5 levels (Off, Light, Moderate, Heavy, Extreme) but only Off and Light are implemented in the enum. Signed-off-by: Zephyron --- src/citron/configuration/shared_translation.cpp | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/citron/configuration/shared_translation.cpp b/src/citron/configuration/shared_translation.cpp index d9fcee532..776528886 100644 --- a/src/citron/configuration/shared_translation.cpp +++ b/src/citron/configuration/shared_translation.cpp @@ -205,10 +205,7 @@ std::unique_ptr InitializeTranslations(QWidget* parent) { INSERT(Settings, gc_aggressiveness, tr("GC Aggressiveness:"), tr("Controls how aggressively the emulator evicts unused textures and buffers from VRAM.\n" "Off: Disable automatic cleanup (not recommended, may cause crashes).\n" - "Light: Gentle cleanup, keeps more textures cached.\n" - "Moderate: Balanced cleanup (recommended for most users).\n" - "Heavy: Aggressive cleanup for low VRAM systems (6GB or less).\n" - "Extreme: Maximum cleanup for very low VRAM systems (4GB).")); + "Light: Gentle cleanup, keeps more textures cached (recommended).")); INSERT(Settings, texture_eviction_frames, tr("Texture Eviction Frames:"), tr("Number of frames a texture must be unused before it can be evicted. " "Lower values free VRAM faster but may cause more texture reloading."));