From e110628b4249361d816a5387227b7931f3ec9668 Mon Sep 17 00:00:00 2001 From: Bigfoot71 Date: Wed, 29 Oct 2025 15:37:28 +0100 Subject: [PATCH] adding a note --- src/external/rlsw.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/external/rlsw.h b/src/external/rlsw.h index 2f2789d4e..9c510e945 100644 --- a/src/external/rlsw.h +++ b/src/external/rlsw.h @@ -1346,7 +1346,7 @@ static inline void sw_framebuffer_write_color(sw_pixel_t *dst, const float src[4 static inline void sw_framebuffer_write_depth(sw_pixel_t *dst, float depth) { - depth = sw_saturate(depth); + depth = sw_saturate(depth); // REVIEW: An overflow can occur in certain circumstances with clipping, and needs to be reviewed... #if SW_DEPTH_IS_PACKED dst->depth[0] = SW_PACK_DEPTH(depth);