From 0a481c0663297781f595c8a1b8ca318446d0a9b3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9o=20Lam?= Date: Sat, 14 Apr 2018 23:48:16 +0200 Subject: [PATCH] WiimoteEmu: Fix turntable_button_names size Three elements were removed, but because of an oversight the array size was not changed to match. --- Source/Core/Core/HW/WiimoteEmu/Attachment/Turntable.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/Core/HW/WiimoteEmu/Attachment/Turntable.cpp b/Source/Core/Core/HW/WiimoteEmu/Attachment/Turntable.cpp index f1af564152..d82172626c 100644 --- a/Source/Core/Core/HW/WiimoteEmu/Attachment/Turntable.cpp +++ b/Source/Core/Core/HW/WiimoteEmu/Attachment/Turntable.cpp @@ -34,7 +34,7 @@ constexpr std::array turntable_button_bitmasks{{ Turntable::BUTTON_EUPHORIA, }}; -constexpr std::array turntable_button_names{{ +constexpr std::array turntable_button_names{{ _trans("Green Left"), _trans("Red Left"), _trans("Blue Left"),