From 40701d9029abe6b44c9f6c7a46d5c611a542e5e5 Mon Sep 17 00:00:00 2001 From: Sergio Valor Martinez Date: Fri, 26 May 2023 08:43:20 +0200 Subject: [PATCH] =?UTF-8?q?input:=20Retocados=20los=20mensajes=20de=20info?= =?UTF-8?q?rmaci=C3=B3n?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- units/input.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/units/input.cpp b/units/input.cpp index 3caae22..da12583 100644 --- a/units/input.cpp +++ b/units/input.cpp @@ -224,16 +224,16 @@ bool Input::discoverGameController() if (verbose) { + cout << "\n** Checking game controllers" << endl; if (nJoysticks > 0) { string stNumJoysticks = nJoysticks == 1 ? "joystick" : "joysticks"; string stNumGamePads = numGamepads == 1 ? "is a gamepad" : "are gamepads"; - cout << "\n** Checking game controllers" << endl; - cout << nJoysticks << " " << stNumJoysticks << " found (" << numGamepads << " " << stNumGamePads << ")\n"; + cout << nJoysticks << " " << stNumJoysticks << " found (" << numGamepads << " " << stNumGamePads << ")" << endl; } else { - cout << "\n>> No game controllers found\n"; + cout << ">> No game controllers found" << endl; } }