From bc3622c2a8ae64350ce3ad73e55e12afd97103ec Mon Sep 17 00:00:00 2001 From: iwubcode Date: Fri, 4 Aug 2017 00:32:20 -0500 Subject: [PATCH] Fix the size of s_last_connect_request_counter to be 5 (wiimotes + balance board) --- Source/Core/Core/HW/Wiimote.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/Core/HW/Wiimote.cpp b/Source/Core/Core/HW/Wiimote.cpp index e992cf2266..0e0d3f9f78 100644 --- a/Source/Core/Core/HW/Wiimote.cpp +++ b/Source/Core/Core/HW/Wiimote.cpp @@ -23,7 +23,7 @@ #include "InputCommon/InputConfig.h" // Limit the amount of wiimote connect requests, when a button is pressed in disconnected state -static std::array s_last_connect_request_counter; +static std::array s_last_connect_request_counter; namespace Wiimote {