From 36d487762f6940d5f98d7233bff7ed78063304d8 Mon Sep 17 00:00:00 2001 From: Andrew Scheller Date: Thu, 8 Aug 2024 10:22:10 +0100 Subject: [PATCH] Fix comment typo in hello_interp.c --- interp/hello_interp/hello_interp.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/interp/hello_interp/hello_interp.c b/interp/hello_interp/hello_interp.c index 75e855a8b..d0cdc2092 100644 --- a/interp/hello_interp/hello_interp.c +++ b/interp/hello_interp/hello_interp.c @@ -215,7 +215,7 @@ void texture_mapping_setup(uint8_t *texture, uint texture_width_bits, uint textu uint uv_fractional_bits) { interp_config cfg = interp_default_config(); // set add_raw flag to use raw (un-shifted and un-masked) lane accumulator value when adding - // it to the the lane base to make the lane result + // it to the lane base to make the lane result interp_config_set_add_raw(&cfg, true); interp_config_set_shift(&cfg, uv_fractional_bits); interp_config_set_mask(&cfg, 0, texture_width_bits - 1); @@ -288,4 +288,4 @@ int main() { texture_mapping(); return 0; -} \ No newline at end of file +}