From aecbe24294f307ea1e08a605dccb595b9a525009 Mon Sep 17 00:00:00 2001 From: ackimixs Date: Tue, 21 May 2024 16:42:55 +0200 Subject: [PATCH] remove log --- GameControllerHandler.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GameControllerHandler.cpp b/GameControllerHandler.cpp index 1dc9160..6e814eb 100644 --- a/GameControllerHandler.cpp +++ b/GameControllerHandler.cpp @@ -85,7 +85,7 @@ void GameControllerHandler::handleEvents() { this->sendMessage("gc;strat;axis;0," + std::to_string(event.caxis.value) + "\n"); } else if (event.caxis.axis == SDL_CONTROLLER_AXIS_LEFTY) { - std::cout << "Left Y axis moved to " << event.caxis.value << std::endl; + // std::cout << "Left Y axis moved to " << event.caxis.value << std::endl; this->sendMessage("gc;strat;axis;1," + std::to_string(event.caxis.value) + "\n"); } else if (event.caxis.axis == SDL_CONTROLLER_AXIS_RIGHTX) {