diff options
Diffstat (limited to 'src/video_core/textures/decoders.cpp')
| -rw-r--r-- | src/video_core/textures/decoders.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/video_core/textures/decoders.cpp b/src/video_core/textures/decoders.cpp index 1bccc09d9..f1f523ad1 100644 --- a/src/video_core/textures/decoders.cpp +++ b/src/video_core/textures/decoders.cpp | |||
| @@ -66,9 +66,9 @@ void Swizzle(std::span<u8> output, std::span<const u8> input, u32 bytes_per_pixe | |||
| 66 | if (const auto offset = (TO_LINEAR ? unswizzled_offset : swizzled_offset); | 66 | if (const auto offset = (TO_LINEAR ? unswizzled_offset : swizzled_offset); |
| 67 | offset >= input.size()) { | 67 | offset >= input.size()) { |
| 68 | // TODO(Rodrigo): This is an out of bounds access that should never happen. To | 68 | // TODO(Rodrigo): This is an out of bounds access that should never happen. To |
| 69 | // avoid crashing the emulator, continue. | 69 | // avoid crashing the emulator, break. |
| 70 | ASSERT_MSG(false, "offset {} exceeds input size {}!", offset, input.size()); | 70 | ASSERT_MSG(false, "offset {} exceeds input size {}!", offset, input.size()); |
| 71 | continue; | 71 | break; |
| 72 | } | 72 | } |
| 73 | 73 | ||
| 74 | u8* const dst = &output[TO_LINEAR ? swizzled_offset : unswizzled_offset]; | 74 | u8* const dst = &output[TO_LINEAR ? swizzled_offset : unswizzled_offset]; |