summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorlat9nq <22451773+lat9nq@users.noreply.github.com>2021-06-04 11:12:14 +0200
committerlat9nq <22451773+lat9nq@users.noreply.github.com>2021-06-04 11:12:14 +0200
commit287a0f72a5474a5c8c8cdf2b15fb61532e11ec61 (patch)
treea6a482654275aca3dc2715883c4b4910ab5c5bce
parentdecoders: Avoid out-of-bounds access (diff)
downloadyuzu-287a0f72a5474a5c8c8cdf2b15fb61532e11ec61.tar
yuzu-287a0f72a5474a5c8c8cdf2b15fb61532e11ec61.tar.gz
yuzu-287a0f72a5474a5c8c8cdf2b15fb61532e11ec61.tar.bz2
yuzu-287a0f72a5474a5c8c8cdf2b15fb61532e11ec61.tar.lz
yuzu-287a0f72a5474a5c8c8cdf2b15fb61532e11ec61.tar.xz
yuzu-287a0f72a5474a5c8c8cdf2b15fb61532e11ec61.tar.zst
yuzu-287a0f72a5474a5c8c8cdf2b15fb61532e11ec61.zip
-rw-r--r--src/video_core/textures/decoders.cpp4
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
if (const auto offset = (TO_LINEAR ? unswizzled_offset : swizzled_offset);
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];