Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Libretro
libretro-minivmac
Commits
357e8b36
Commit
357e8b36
authored
Jan 25, 2022
by
Vladimir Serbinenko
Browse files
Add missing NULL-terminator for inputDescriptors
parent
57fc03ff
Changes
1
Hide whitespace changes
Inline
Side-by-side
libretro/libretro-core.c
View file @
357e8b36
...
...
@@ -496,7 +496,8 @@ void retro_init(void)
{
0
,
RETRO_DEVICE_JOYPAD
,
0
,
RETRO_DEVICE_ID_JOYPAD_R2
,
"R2"
},
{
0
,
RETRO_DEVICE_JOYPAD
,
0
,
RETRO_DEVICE_ID_JOYPAD_L2
,
"L2"
},
{
0
,
RETRO_DEVICE_JOYPAD
,
0
,
RETRO_DEVICE_ID_JOYPAD_R3
,
"R3"
},
{
0
,
RETRO_DEVICE_JOYPAD
,
0
,
RETRO_DEVICE_ID_JOYPAD_L3
,
"L3"
}
{
0
,
RETRO_DEVICE_JOYPAD
,
0
,
RETRO_DEVICE_ID_JOYPAD_L3
,
"L3"
},
{
0
,
0
,
0
,
0
,
NULL
}
};
environ_cb
(
RETRO_ENVIRONMENT_SET_INPUT_DESCRIPTORS
,
&
inputDescriptors
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment