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
xmil-libretro
Commits
4cb1e4ea
Commit
4cb1e4ea
authored
Apr 14, 2022
by
Libretro-Admin
Browse files
Cleanup
parent
a1d344b9
Pipeline
#120638
passed with stages
in 10 minutes
Changes
1
Pipelines
87
Hide whitespace changes
Inline
Side-by-side
libretro/libretro.c
View file @
4cb1e4ea
...
...
@@ -487,8 +487,10 @@ void *retro_get_memory_data(unsigned id)
case
RETRO_MEMORY_SYSTEM_RAM
:
return
mainmem
;
default:
re
turn
NULL
;
b
re
ak
;
}
return
NULL
;
}
size_t
retro_get_memory_size
(
unsigned
id
)
...
...
@@ -498,8 +500,10 @@ size_t retro_get_memory_size(unsigned id)
case
RETRO_MEMORY_SYSTEM_RAM
:
return
sizeof
(
mainmem
);
default:
re
turn
0
;
b
re
ak
;
}
return
0
;
}
bool
set_eject_state
(
bool
ejected
)
{
...
...
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