This code
Code: Select all
GLubyte step;
for(step = 0; step < POINTS; step += 1)
produces this warning
Code: Select all
warning: conversion to ‘GLubyte {aka unsigned char}’ from ‘int’ may alter its value [-Wconversion]
for(step = 0; step < POINTS; step += 1)
^
PeterO
PS: Yes I know it is only a warning, but I'm trying to get my code into a state where it compiles cleanly in preparation for releasing it.
