VideoBackend: remove unused config vars.

No point to keeping around variables which are always "true".
This commit is contained in:
magumagu 2014-04-04 16:17:14 -07:00
parent 7563e8c6f3
commit fd9c1fa746
10 changed files with 15 additions and 37 deletions

View file

@ -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();