VMManager: Remove osd message for hw mipmap.

This commit is contained in:
lightningterror 2024-05-16 15:59:32 +02:00
parent ef2549edb1
commit 8d3617bb71
1 changed files with 2 additions and 2 deletions

View File

@ -3016,10 +3016,10 @@ void VMManager::WarnAboutUnsafeSettings()
} }
if (EmuConfig.GS.UpscaleMultiplier < 1.0f) if (EmuConfig.GS.UpscaleMultiplier < 1.0f)
append(ICON_FA_TV, TRANSLATE_SV("VMManager", "Upscale multiplier is below native, this will break rendering.")); append(ICON_FA_TV, TRANSLATE_SV("VMManager", "Upscale multiplier is below native, this will break rendering."));
if (EmuConfig.GS.HWMipmap != HWMipmapLevel::Automatic) if (!EmuConfig.GS.HWMipmap)
{ {
append(ICON_FA_IMAGES, append(ICON_FA_IMAGES,
TRANSLATE_SV("VMManager", "Mipmapping is not set to automatic. This may break rendering in some games.")); TRANSLATE_SV("VMManager", "Mipmapping is disabled. This may break rendering in some games."));
} }
if (EmuConfig.GS.TextureFiltering != BiFiltering::PS2) if (EmuConfig.GS.TextureFiltering != BiFiltering::PS2)
{ {