early-access version 1752

This commit is contained in:
pineappleEA
2021-06-05 06:18:39 +02:00
parent af925f1c1f
commit 3e0a265d01
6 changed files with 60 additions and 17 deletions

View File

@@ -64,11 +64,11 @@ void Swizzle(std::span<u8> output, std::span<const u8> input, u32 bytes_per_pixe
slice * pitch * height + line * pitch + column * bytes_per_pixel;
if (const auto offset = (TO_LINEAR ? unswizzled_offset : swizzled_offset);
offset > input.size()) {
offset >= input.size()) {
// TODO(Rodrigo): This is an out of bounds access that should never happen. To
// avoid crashing the emulator, continue.
// avoid crashing the emulator, break.
ASSERT_MSG(false, "offset {} exceeds input size {}!", offset, input.size());
continue;
break;
}
u8* const dst = &output[TO_LINEAR ? swizzled_offset : unswizzled_offset];