diff options
Diffstat (limited to 'src/GPU2D_Soft.cpp')
-rw-r--r-- | src/GPU2D_Soft.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/GPU2D_Soft.cpp b/src/GPU2D_Soft.cpp index c686bad..16d9cab 100644 --- a/src/GPU2D_Soft.cpp +++ b/src/GPU2D_Soft.cpp @@ -372,9 +372,6 @@ void GPU2D_Soft::DoCapture(u32 line, u32 width) u16* dst = (u16*)GPU::VRAM[dstvram]; u32 dstaddr = (((CaptureCnt >> 18) & 0x3) << 14) + (line * width); - static_assert(GPU::VRAMDirtyGranularity == 512); - GPU::VRAMDirty[dstvram][(dstaddr & 0x1FFFF) / GPU::VRAMDirtyGranularity] = true; - // TODO: handle 3D in accelerated mode!! u32* srcA; @@ -467,6 +464,9 @@ void GPU2D_Soft::DoCapture(u32 line, u32 width) dstaddr &= 0xFFFF; srcBaddr &= 0xFFFF; + static_assert(GPU::VRAMDirtyGranularity == 512); + GPU::VRAMDirty[dstvram][(dstaddr * 2) / GPU::VRAMDirtyGranularity] = true; + switch ((CaptureCnt >> 29) & 0x3) { case 0: // source A |