VMManager: Add warning for texture dumping

Adds a warning for texture dumping to disk being enabled.
This commit is contained in:
JordanTheToaster 2024-04-09 15:44:10 +01:00 committed by refractionpcsx2
parent cbecda8850
commit 7e1900a8a1
1 changed files with 5 additions and 0 deletions

View File

@ -3126,6 +3126,11 @@ void VMManager::WarnAboutUnsafeSettings()
append(ICON_FA_EXCLAMATION_CIRCLE,
TRANSLATE_SV("VMManager", "Estimate texture region is enabled, this may reduce performance."));
}
if (EmuConfig.GS.DumpReplaceableTextures)
{
append(ICON_FA_EXCLAMATION_CIRCLE,
TRANSLATE_SV("VMManager", "Texture dumping is enabled, this will continually dump textures to disk."));
}
if (!messages.empty())
{