From 7111f2c025a389979ffa95c0dcb0b01fa7164423 Mon Sep 17 00:00:00 2001 From: Mylloon Date: Sun, 8 May 2022 16:10:27 +0200 Subject: [PATCH] Correct output filename --- src/main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index 54c61ec..f94251a 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -24,11 +24,11 @@ int main(int argc, char const *argv[]) { return 1; } */ - std::string chemin_image("test.bmp"); + std::string chemin_image("resultat.bmp"); if(std::ifstream(chemin_image).is_open()) { char choix; do { - std::cout << "Le fichier existe déjà, voulez vous l'écraser ? y/n" << std::endl; + std::cout << "Le fichier \""<< chemin_image << "\" existe déjà, voulez vous l'écraser ? y/n" << std::endl; std::cin >> choix; choix = tolower(choix); } while(choix != 'n' && choix != 'y' && choix != 'o');