From 8051cbbc395eb36e69619e388b1bb51ccc0ebe43 Mon Sep 17 00:00:00 2001 From: Sergio Valor Date: Wed, 3 Jul 2024 12:45:12 +0200 Subject: [PATCH] =?UTF-8?q?A=C3=B1adido=20define=20VERBOSE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- source/director.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source/director.cpp b/source/director.cpp index bb6e0d3..b2e9286 100644 --- a/source/director.cpp +++ b/source/director.cpp @@ -86,10 +86,10 @@ Director::~Director() void Director::initInput() { // Establece si ha de mostrar mensajes -#ifndef RASPI - input->setVerbose(options->console); -#else +#ifdef VERBOSE input->setVerbose(true); +#else + input->setVerbose(options->console); #endif // Busca si hay un mando conectado input->discoverGameController();