From 84b990faa09a1ace5561fb1abc6eefca7f077461 Mon Sep 17 00:00:00 2001 From: Stenzek Date: Sun, 11 Feb 2018 15:29:37 +1000 Subject: VideoConfig: Remove bForceCopyToRam field It's the inverse of supports-copy-to-vram. --- Source/Core/VideoCommon/TextureCacheBase.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Source/Core/VideoCommon/TextureCacheBase.cpp') diff --git a/Source/Core/VideoCommon/TextureCacheBase.cpp b/Source/Core/VideoCommon/TextureCacheBase.cpp index a2c42d4e68..b1925886e9 100644 --- a/Source/Core/VideoCommon/TextureCacheBase.cpp +++ b/Source/Core/VideoCommon/TextureCacheBase.cpp @@ -1566,7 +1566,7 @@ void TextureCacheBase::CopyRenderTargetToTexture(u32 dstAddr, EFBCopyFormat dstF bool copy_to_vram = g_ActiveConfig.backend_info.bSupportsCopyToVram; bool copy_to_ram = !(is_xfb_copy ? g_ActiveConfig.bSkipXFBCopyToRam : g_ActiveConfig.bSkipEFBCopyToRam) || - g_ActiveConfig.backend_info.bForceCopyToRam; + !g_ActiveConfig.backend_info.bSupportsCopyToVram; u8* dst = Memory::GetPointer(dstAddr); if (dst == nullptr) -- cgit v1.2.3