From 07111bb4347c9c525f41d4e25f8fbcfa5829e555 Mon Sep 17 00:00:00 2001 From: Yuri Pourre Date: Mon, 22 Mar 2021 22:23:46 -0300 Subject: [PATCH] Add missing semicolon --- SourceX/controls/controller.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SourceX/controls/controller.cpp b/SourceX/controls/controller.cpp index dd67fe608..8c2a5f5a0 100644 --- a/SourceX/controls/controller.cpp +++ b/SourceX/controls/controller.cpp @@ -127,7 +127,7 @@ ControllerButtonEvent ToControllerButtonEvent(const SDL_Event &event) } #endif - const Joystick *const joystick = Joystick::Get(event) + const Joystick *const joystick = Joystick::Get(event); if (joystick != NULL) result.button = joystick->ToControllerButton(event);