diff --git a/src/website.cpp b/src/website.cpp index 4f33395..0769968 100644 --- a/src/website.cpp +++ b/src/website.cpp @@ -157,7 +157,7 @@ std::vector Website::getGames() { for (unsigned int i = 0; i < root["products"].size(); ++i) { - std::cerr << "Getting game names " << "(" << root["page"].asInt() << "/" << root["totalPages"].asInt() << ") " << i+1 << " / " << root["products"].size() << "\r" << std::flush; + std::cerr << "\033[KGetting game names " << "(" << root["page"].asInt() << "/" << root["totalPages"].asInt() << ") " << i+1 << " / " << root["products"].size() << "\r" << std::flush; Json::Value product = root["products"][i]; gameItem game; game.name = product["slug"].asString();