mirror of
https://github.com/libretro/ppsspp.git
synced 2024-11-24 00:29:57 +00:00
Oops, flipping was off by one.
That's why software and directx9 were off, arg.
This commit is contained in:
parent
f842d309b2
commit
cdbcc12a4e
@ -300,7 +300,7 @@ std::vector<u32> TranslateDebugBufferToCompare(const GPUDebugBuffer *buffer, u32
|
||||
if (!buffer->GetFlipped())
|
||||
{
|
||||
// Bitmaps are flipped, so we have to compare backwards in this case.
|
||||
pixels += outStride * buffer->GetHeight();
|
||||
pixels += outStride * (buffer->GetHeight() - 1);
|
||||
outStride = -outStride;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user