From fd9c1fa746616540dcad84bb44509d00ba739c6e Mon Sep 17 00:00:00 2001 From: magumagu Date: Fri, 4 Apr 2014 16:17:14 -0700 Subject: VideoBackend: remove unused config vars. No point to keeping around variables which are always "true". --- Source/Core/VideoCommon/BPFunctions.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'Source/Core/VideoCommon/BPFunctions.cpp') diff --git a/Source/Core/VideoCommon/BPFunctions.cpp b/Source/Core/VideoCommon/BPFunctions.cpp index 9bc9b4d3dd..0b468d1cf8 100644 --- a/Source/Core/VideoCommon/BPFunctions.cpp +++ b/Source/Core/VideoCommon/BPFunctions.cpp @@ -153,8 +153,7 @@ void OnPixelFormatChange() * Since we are always using an RGBA8 buffer though, this causes issues in some games. * Thus, we reinterpret the old EFB data with the new format here. */ - if (!g_ActiveConfig.bEFBEmulateFormatChanges || - !g_ActiveConfig.backend_info.bSupportsFormatReinterpretation) + if (!g_ActiveConfig.bEFBEmulateFormatChanges) return; auto old_format = Renderer::GetPrevPixelFormat(); -- cgit v1.2.3