ports/graphics/lux/files/patch-pv__rendering__common.h
Robert Clausecker 905958dd6f graphics/lux: fix build on i386
Use int over unsigned int for fc_t to avoid a type narrowing error.
Regenerate patches while we are at it.

MFH:		2024Q4
2024-10-21 11:36:00 +02:00

11 lines
265 B
C

--- pv_rendering_common.h.orig 2024-10-14 12:36:31 UTC
+++ pv_rendering_common.h
@@ -194,7 +194,7 @@ static const int max_degree = 7 ; // vspline_constants
// typedef unsigned short fc_t ;
-typedef unsigned int fc_t ;
+typedef int fc_t ;
#ifdef VECTORIZE