From 75affa13f7611f6bd74d9471a93b4cfdf2b46e85 Mon Sep 17 00:00:00 2001
From: wwylele <wwylele@gmail.com>
Date: Tue, 22 Nov 2016 20:17:28 +0200
Subject: [PATCH] Fix format error from #2195

---
 src/video_core/command_processor.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/video_core/command_processor.cpp b/src/video_core/command_processor.cpp
index 45585fe309..6bd5b281c6 100644
--- a/src/video_core/command_processor.cpp
+++ b/src/video_core/command_processor.cpp
@@ -224,7 +224,7 @@ static void WritePicaReg(u32 id, u32 value, u32 mask) {
                 u8* texture_data = Memory::GetPhysicalPointer(texture.config.GetPhysicalAddress());
                 g_debug_context->recorder->MemoryAccessed(
                     texture_data, Pica::Regs::NibblesPerPixel(texture.format) *
-                    texture.config.width / 2 * texture.config.height,
+                                      texture.config.width / 2 * texture.config.height,
                     texture.config.GetPhysicalAddress());
             }
         }