Skip to content

Commit

Permalink
VMManager: Add warning for texture dumping
Browse files Browse the repository at this point in the history
Adds a warning for texture dumping to disk being enabled.
  • Loading branch information
JordanTheToaster committed Apr 21, 2024
1 parent 3ad65b3 commit 31beb3c
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions pcsx2/VMManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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())
{
Expand Down

0 comments on commit 31beb3c

Please sign in to comment.