Fix stb compilation on Windows for TextureTool

This commit is contained in:
Wojtek Figat
2021-10-11 13:58:46 +02:00
parent 65bee6bd0f
commit ee2c9a3970
2 changed files with 3 additions and 2 deletions

View File

@@ -317,7 +317,7 @@ static unsigned int stb__MatchColorsBlock(unsigned char *block, unsigned char *c
static void stb__OptimizeColorsBlock(unsigned char *block, unsigned short *pmax16, unsigned short *pmin16)
{
int mind = 0x7fffffff,maxd = -0x7fffffff;
unsigned char *minp, *maxp;
unsigned char *minp = nullptr, *maxp = nullptr;
double magn;
int v_r,v_g,v_b;
static const int nIterPower = 4;