diff --git a/source/stats.cpp b/source/stats.cpp index ca195ee..ab4695f 100644 --- a/source/stats.cpp +++ b/source/stats.cpp @@ -224,7 +224,7 @@ void Stats::saveToFile(std::string filePath, std::vector &list) std::ofstream file(filePath); // Escribe en el fichero - file << "# NOMBRE DE LA HABITACION;VISITAS;MUERTES" << std::endl; + file << "# ROOM NAME;VISITS;DEATHS" << std::endl; for (auto item : list) { file << item.name << ";" << item.visited << ";" << item.died << std::endl;