mirror of
https://git.citron-emu.org/citron/emulator
synced 2026-02-03 08:03:36 +00:00
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:
@@ -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."));
|
||||
|
||||
Reference in New Issue
Block a user