mirror of
https://github.com/godotengine/godot.git
synced 2025-11-01 06:01:14 +00:00
Fix a crash when using Input.get_joy_button_index_from_string()
There was a missing comma between two elements in the _buttons array
This commit is contained in:
parent
1134fade46
commit
07fc567d03
1 changed files with 1 additions and 1 deletions
|
|
@ -1296,7 +1296,7 @@ static const char *_buttons[JOY_BUTTON_MAX] = {
|
|||
"DPAD Up",
|
||||
"DPAD Down",
|
||||
"DPAD Left",
|
||||
"DPAD Right"
|
||||
"DPAD Right",
|
||||
"Misc 1",
|
||||
"Paddle 1",
|
||||
"Paddle 2",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue