mirror of https://github.com/PCSX2/pcsx2.git
VMManager: Add warning for debug device
This commit is contained in:
parent
24b1be1dd2
commit
7de5066c87
|
@ -3173,6 +3173,11 @@ void VMManager::WarnAboutUnsafeSettings()
|
|||
append(ICON_FA_IMAGES,
|
||||
TRANSLATE_SV("VMManager", "Mipmapping is disabled. This may break rendering in some games."));
|
||||
}
|
||||
if (EmuConfig.GS.UseDebugDevice)
|
||||
{
|
||||
append(ICON_FA_BUG,
|
||||
TRANSLATE_SV("VMManager", "Debug device is enabled. This will massively reduce performance."));
|
||||
}
|
||||
static bool render_change_warn = false;
|
||||
if (EmuConfig.GS.Renderer != GSRendererType::Auto && EmuConfig.GS.Renderer != GSRendererType::SW && !render_change_warn)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue