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; } }