Skip to content

Commit

Permalink
Add workaround for color.txt parsing on MinGW
Browse files Browse the repository at this point in the history
  • Loading branch information
sfan5 committed Dec 20, 2014
1 parent 20b340e commit 722f02d
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions TileGenerator.cpp
Expand Up @@ -264,11 +264,20 @@ void TileGenerator::parseColorsStream(std::istream &in)
}

char name[75];
#ifdef __MINGW32__
// MinGW's sscanf doesn't support %hhu
unsigned int r, g, b, a, t;
#else
uint8_t r, g, b, a, t;
#endif
a = 255;
t = 0;

#ifdef __MINGW32__
sscanf(line, "%75s %u %u %u %u %u", name, &r, &g, &b, &a, &t);
#else
sscanf(line, "%75s %hhu %hhu %hhu %hhu %hhu", name, &r, &g, &b, &a, &t);
#endif
if(strlen(name) == 0)
break;
ColorEntry color = ColorEntry(r, g, b, a, t);
Expand Down

0 comments on commit 722f02d

Please sign in to comment.