mirror of https://github.com/PCSX2/pcsx2.git
VMManager: Add warning for texture dumping
Adds a warning for texture dumping to disk being enabled.
This commit is contained in:
parent
cbecda8850
commit
7e1900a8a1
|
@ -3126,6 +3126,11 @@ void VMManager::WarnAboutUnsafeSettings()
|
||||||
append(ICON_FA_EXCLAMATION_CIRCLE,
|
append(ICON_FA_EXCLAMATION_CIRCLE,
|
||||||
TRANSLATE_SV("VMManager", "Estimate texture region is enabled, this may reduce performance."));
|
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())
|
if (!messages.empty())
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue