Browse Source

Fix format error from #2195

pull/15/merge
wwylele 9 years ago
parent
commit
75affa13f7
  1. 2
      src/video_core/command_processor.cpp

2
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());
}
}

Loading…
Cancel
Save