Fix small typo (std:cerr -> std::cerr)

This commit is contained in:
sfan5 2016-10-09 15:19:35 +02:00 committed by GitHub
parent bcbfd00eba
commit 09945caa14
1 changed files with 1 additions and 1 deletions

View File

@ -280,7 +280,7 @@ void TileGenerator::parseColorsStream(std::istream &in)
t = 0;
int items = sscanf(line, "%64s %u %u %u %u %u", name, &r, &g, &b, &a, &t);
if(items < 4) {
std:cerr << "Failed to parse color entry '" << line << "'." << std::endl;
std::cerr << "Failed to parse color entry '" << line << "'" << std::endl;
continue;
}