From a5427bc38fe2dd9018bf657525406287bec0cbfa Mon Sep 17 00:00:00 2001 From: Ray Date: Sun, 12 Apr 2026 11:07:09 +0200 Subject: [PATCH] Update rlsw.h --- 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 c9ace86cd..8f7ab4405 100644 --- a/src/external/rlsw.h +++ b/src/external/rlsw.h @@ -2417,7 +2417,7 @@ static inline void sw_texture_sample_nearest(float *SW_RESTRICT color, const sw_ static inline void sw_texture_sample_linear(float *SW_RESTRICT color, const sw_texture_t *SW_RESTRICT tex, float u, float v) { - // TODO: With a bit more cleverness thee number of operations can + // TODO: With a bit more cleverness the number of operations can // be clearly reduced, but for now it works fine float xf = (u*tex->width) - 0.5f;