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
retro8
Commits
39348ee0
Commit
39348ee0
authored
Feb 27, 2022
by
phcoder
Browse files
Fix memset
parent
37676aa3
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/libretro/libretro.cpp
View file @
39348ee0
...
...
@@ -90,7 +90,7 @@ extern "C"
void
retro_get_system_info
(
retro_system_info
*
info
)
{
std
::
memset
(
info
,
0
,
sizeof
(
info
));
std
::
memset
(
info
,
0
,
sizeof
(
*
info
));
info
->
library_name
=
"retro-8 (alpha)"
;
info
->
library_version
=
"0.1b"
;
...
...
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