From 3f8c124e1e9f7c3d846a3e2c486c0961ee6ec98c Mon Sep 17 00:00:00 2001 From: Bigfoot71 Date: Sat, 25 Oct 2025 15:58:06 +0200 Subject: [PATCH] consistency --- src/external/rlsw.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/external/rlsw.h b/src/external/rlsw.h index f9e2fcc77..738b2ea76 100644 --- a/src/external/rlsw.h +++ b/src/external/rlsw.h @@ -3143,7 +3143,7 @@ static inline void FUNC_NAME(const sw_vertex_t *v0, const sw_vertex_t *v1) \ if (ENABLE_DEPTH_TEST) \ { \ float depth = sw_framebuffer_read_depth(dptr); \ - if (z > depth) goto skip; \ + if (z > depth) goto discard; \ } \ \ sw_framebuffer_write_depth(dptr, z); \ @@ -3160,7 +3160,7 @@ static inline void FUNC_NAME(const sw_vertex_t *v0, const sw_vertex_t *v1) \ } \ else sw_framebuffer_write_color(cptr, color); \ \ - skip: \ + discard: \ x += xInc; y += yInc; z += zInc; \ r += rInc; g += gInc; b += bInc; a += aInc; \ } \