Close colors file after parsing

This commit is contained in:
Rogier 2014-05-13 20:05:10 +02:00
parent 6544d4de37
commit 64bf53fc8a

View File

@ -326,6 +326,7 @@ void TileGenerator::parseColorsFile(const std::string &fileName)
return;
}
parseColorsStream(in, fileName.c_str());
in.close();
}
void TileGenerator::setBackend(std::string backend)