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 <zephyron@citron-emu.org>
This commit is contained in:
Zephyron
2026-02-01 14:16:37 +10:00
parent 6a9c5f39e4
commit c3a90a1f59

View File

@@ -205,10 +205,7 @@ std::unique_ptr<TranslationMap> 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."));