summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/RenderBase.cpp
diff options
context:
space:
mode:
authoriwubcode <iwubcode@users.noreply.github.com>2017-10-01 11:19:29 -0500
committeriwubcode <iwubcode@users.noreply.github.com>2017-11-17 22:11:32 -0600
commit7248dd47d5b48564a1ed049bdf392146dca2d72a (patch)
tree332a429449ea35f82f2618ac676a3d85a609a2f9 /Source/Core/VideoCommon/RenderBase.cpp
parentf8c2806830804ec322ecebb3f9ada4f732c6b738 (diff)
Hybrid XFB: Fix lint errors
Diffstat (limited to 'Source/Core/VideoCommon/RenderBase.cpp')
-rw-r--r--Source/Core/VideoCommon/RenderBase.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/VideoCommon/RenderBase.cpp b/Source/Core/VideoCommon/RenderBase.cpp
index 1aa7918e96..0db81bb885 100644
--- a/Source/Core/VideoCommon/RenderBase.cpp
+++ b/Source/Core/VideoCommon/RenderBase.cpp
@@ -643,8 +643,8 @@ void Renderer::Swap(u32 xfbAddr, u32 fbWidth, u32 fbStride, u32 fbHeight, const
{
constexpr int force_safe_texture_cache_hash = 0;
// Get the current XFB from texture cache
- auto* xfb_entry = g_texture_cache->GetXFBTexture(xfbAddr, fbStride, fbHeight, TextureFormat::XFB,
- force_safe_texture_cache_hash);
+ auto* xfb_entry = g_texture_cache->GetXFBTexture(
+ xfbAddr, fbStride, fbHeight, TextureFormat::XFB, force_safe_texture_cache_hash);
if (xfb_entry && xfb_entry->id != m_last_xfb_id)
{