From 2448bf387208ede21d49424011c794ed355646a8 Mon Sep 17 00:00:00 2001 From: Bram Verhulst Date: Tue, 14 Jan 2025 21:07:28 +0100 Subject: [PATCH] Stupid Controller Fix :p --- project/src/GamePadController.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/project/src/GamePadController.h b/project/src/GamePadController.h index 62a30e8..fd53771 100644 --- a/project/src/GamePadController.h +++ b/project/src/GamePadController.h @@ -9,8 +9,8 @@ struct GamePad{ - std::array buttons{}; - std::array axis{}; + std::array buttons{false}; + std::array axis{0.0f}; std::array prevButtons{ false }; };