From a87fb2be93f245c8aea380a2d89bee6c5158a331 Mon Sep 17 00:00:00 2001 From: Ryan Pavlik Date: Wed, 8 Feb 2023 17:35:33 -0600 Subject: [PATCH] a/tracking: Fix typo --- src/xrt/auxiliary/tracking/t_hsv_filter.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/xrt/auxiliary/tracking/t_hsv_filter.c b/src/xrt/auxiliary/tracking/t_hsv_filter.c index 1a976ea34..30da5b2a4 100644 --- a/src/xrt/auxiliary/tracking/t_hsv_filter.c +++ b/src/xrt/auxiliary/tracking/t_hsv_filter.c @@ -92,7 +92,7 @@ t_hsv_build_optimized_table(struct t_hsv_filter_params *params, struct t_hsv_fil struct t_hsv_filter_large_table *temp = U_TYPED_CALLOC(struct t_hsv_filter_large_table); t_hsv_build_large_table(params, temp); - // Half of step, minues one + // Half of step, minus one int offset = (T_HSV_STEP / 2) - 1; for (int y = 0; y < T_HSV_SIZE; y++) {