From 40bb9974f21878e64fb03d70e717cb996bf13a29 Mon Sep 17 00:00:00 2001 From: spycrab Date: Thu, 12 Apr 2018 14:18:04 +0200 Subject: Reformat all the things! --- Source/Core/VideoCommon/TextureCacheBase.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'Source/Core/VideoCommon/TextureCacheBase.cpp') diff --git a/Source/Core/VideoCommon/TextureCacheBase.cpp b/Source/Core/VideoCommon/TextureCacheBase.cpp index 278d2486b9..9ac75d31f0 100644 --- a/Source/Core/VideoCommon/TextureCacheBase.cpp +++ b/Source/Core/VideoCommon/TextureCacheBase.cpp @@ -573,8 +573,10 @@ private: auto x = j * 2; auto y = i * 2; const std::array samples{{ - Sample(src, src_shape, x, y), Sample(src, src_shape, x + 1, y), - Sample(src, src_shape, x, y + 1), Sample(src, src_shape, x + 1, y + 1), + Sample(src, src_shape, x, y), + Sample(src, src_shape, x + 1, y), + Sample(src, src_shape, x, y + 1), + Sample(src, src_shape, x + 1, y + 1), }}; auto* dst_pixel = dst + (j + i * dst_shape.row_length) * 4; -- cgit v1.2.3