diff options
author | James Rowe <jroweboy@gmail.com> | 2016-11-22 12:46:12 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-11-22 12:46:12 -0700 |
commit | c96d143135eb8fae8194f0479b7866cb605ccbf2 (patch) | |
tree | 818ef715140e66244d89e013ab46fc74366fdd65 /src | |
parent | 0fbe0634a76f489711fb5a602d3b93454fc6fe19 (diff) | |
parent | 75affa13f7611f6bd74d9471a93b4cfdf2b46e85 (diff) |
Merge pull request #2207 from wwylele/fix-2195
Fix format error from #2195
Diffstat (limited to 'src')
-rw-r--r-- | src/video_core/command_processor.cpp | 2 |
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) { 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()); } } |