mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-20 19:44:57 +00:00
WiimoteEmu: Fix turntable_button_names size
Three elements were removed, but because of an oversight the array size was not changed to match.
This commit is contained in:
parent
783e4ec2fa
commit
0a481c0663
1 changed files with 1 additions and 1 deletions
|
@ -34,7 +34,7 @@ constexpr std::array<u16, 9> turntable_button_bitmasks{{
|
|||
Turntable::BUTTON_EUPHORIA,
|
||||
}};
|
||||
|
||||
constexpr std::array<const char*, 9> turntable_button_names{{
|
||||
constexpr std::array<const char*, 6> turntable_button_names{{
|
||||
_trans("Green Left"),
|
||||
_trans("Red Left"),
|
||||
_trans("Blue Left"),
|
||||
|
|
Loading…
Add table
Reference in a new issue