Răsfoiți Sursa

Merge pull request #2207 from wwylele/fix-2195

Fix format error from #2195
James Rowe 9 ani în urmă
părinte
comite
c96d143135
1 a modificat fișierele cu 1 adăugiri și 1 ștergeri
  1. 1 1
      src/video_core/command_processor.cpp

+ 1 - 1
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());
                 u8* texture_data = Memory::GetPhysicalPointer(texture.config.GetPhysicalAddress());
                 g_debug_context->recorder->MemoryAccessed(
                 g_debug_context->recorder->MemoryAccessed(
                     texture_data, Pica::Regs::NibblesPerPixel(texture.format) *
                     texture_data, Pica::Regs::NibblesPerPixel(texture.format) *
-                    texture.config.width / 2 * texture.config.height,
+                                      texture.config.width / 2 * texture.config.height,
                     texture.config.GetPhysicalAddress());
                     texture.config.GetPhysicalAddress());
             }
             }
         }
         }