warning: comparison is always true due to limited range of data type [-Wtype-limits]
m_pTiles[Index].m_Index <= NUM_INDICES-1
Makes no sense, NUM_INDICES
is defined as 256, so it checks for <= 255, which should work for an unsigned charstd::stof
, does someone know how I get it to work? Cant compile it on 0.7NUM_INDICES-1
in another value now and that works as a workaround..., but I need std::stof, but cant get it