diff --git a/src/evenement.cpp b/src/evenement.cpp index 3787913..531442e 100644 --- a/src/evenement.cpp +++ b/src/evenement.cpp @@ -21,8 +21,8 @@ void Evenement::arreterSimulation(Univers * univers) { void Evenement::affichage(Univers * univers, const bool traits) noexcept { // Entête (la taille de la ligne séparatrice s'adapte en fonction du texte à afficher) std::cout << - std::string(37 + std::to_string(univers->ID).size() + std::to_string(univers->m_tour).size(), '-') << - std::endl << "Affichage de l'univers n°" << univers->ID << " au tour n°" << univers->m_tour << + std::string(39 + std::to_string(univers->ID).size() + std::to_string(univers->m_tour).size(), '-') << + std::endl << " Affichage de l'univers n°" << univers->ID << " au tour n°" << univers->m_tour << "." << std::endl;