Problem: Compiler warnings for signed/unsigned in expression.
Solution: Remove type cast. (Dominique Pelle)
static int included_patches[] =
{ /* Add new patch number below this line */
+/**/
+ 2252,
/**/
2251,
/**/
# define GUI_FUNCTION2(f, pixel) (gui.in_use \
? ((pixel) != INVALCOLOR \
? gui_##f((pixel)) \
- : (long_u)INVALCOLOR) \
+ : INVALCOLOR) \
: termgui_##f((pixel)))
# define USE_24BIT (gui.in_use || p_tgc)
# else
# define GUI_FUNCTION(f) gui_##f
# define GUI_FUNCTION2(f,pixel) ((pixel) != INVALCOLOR \
? gui_##f((pixel)) \
- : (long_u)INVALCOLOR)
+ : INVALCOLOR)
# define USE_24BIT gui.in_use
# endif
#else