From e033fc8015e905288857cc956fe9d66c56ec15a5 Mon Sep 17 00:00:00 2001 From: Sergio Valor Date: Mon, 30 Sep 2024 18:47:12 +0200 Subject: [PATCH] Canviat el missatge d'eixida del joc --- source/main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/main.cpp b/source/main.cpp index 7855748..f7ffbb4 100644 --- a/source/main.cpp +++ b/source/main.cpp @@ -24,8 +24,8 @@ int main(int argc, char *argv[]) // Destruye el objeto Director delete director; - const std::string endType = exit == 0 ? "to terminal" : "shutdown"; - std::cout << "\nGame end -> " << endType << std::endl; + const std::string endType = exit == 0 ? "keyboard" : "controller"; + std::cout << "\nGame end with " << endType << std::endl; return exit; }