summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar James Rowe2016-11-22 12:46:12 -0700
committerGravatar GitHub2016-11-22 12:46:12 -0700
commitc96d143135eb8fae8194f0479b7866cb605ccbf2 (patch)
tree818ef715140e66244d89e013ab46fc74366fdd65
parentMerge pull request #2206 from freiro/SDL_Audio_Error (diff)
parentFix format error from #2195 (diff)
downloadyuzu-c96d143135eb8fae8194f0479b7866cb605ccbf2.tar.gz
yuzu-c96d143135eb8fae8194f0479b7866cb605ccbf2.tar.xz
yuzu-c96d143135eb8fae8194f0479b7866cb605ccbf2.zip
Merge pull request #2207 from wwylele/fix-2195
Fix format error from #2195
-rw-r--r--src/video_core/command_processor.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/command_processor.cpp b/src/video_core/command_processor.cpp
index 45585fe30..6bd5b281c 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) {
224 u8* texture_data = Memory::GetPhysicalPointer(texture.config.GetPhysicalAddress()); 224 u8* texture_data = Memory::GetPhysicalPointer(texture.config.GetPhysicalAddress());
225 g_debug_context->recorder->MemoryAccessed( 225 g_debug_context->recorder->MemoryAccessed(
226 texture_data, Pica::Regs::NibblesPerPixel(texture.format) * 226 texture_data, Pica::Regs::NibblesPerPixel(texture.format) *
227 texture.config.width / 2 * texture.config.height, 227 texture.config.width / 2 * texture.config.height,
228 texture.config.GetPhysicalAddress()); 228 texture.config.GetPhysicalAddress());
229 } 229 }
230 } 230 }