mirror of
https://github.com/libretro/RetroArch
synced 2024-12-26 21:29:08 +00:00
Cleanups; C89_BUILD buildfixes, CXX_BUILD buildfixes, etc
This commit is contained in:
parent
0d6ceafb8b
commit
36c27378bf
1509
menu/menu_explore.c
1509
menu/menu_explore.c
File diff suppressed because it is too large
Load Diff
12
playlist.c
12
playlist.c
@ -92,6 +92,13 @@ typedef int (playlist_sort_fun_t)(
|
||||
const struct playlist_entry *a,
|
||||
const struct playlist_entry *b);
|
||||
|
||||
/* TODO/FIXME - hack for allowing the explore view to switch
|
||||
* over to a playlist item */
|
||||
void playlist_set_cached(playlist_t* pl)
|
||||
{
|
||||
playlist_cached = pl;
|
||||
}
|
||||
|
||||
/* Convenience function: copies specified playlist
|
||||
* path to specified playlist configuration object */
|
||||
void playlist_config_set_path(playlist_config_t *config, const char *path)
|
||||
@ -2994,8 +3001,3 @@ core_info_t *playlist_get_default_core_info(playlist_t* playlist)
|
||||
return NULL;
|
||||
}
|
||||
|
||||
// hack for allowing the explore view to switch over to a playlist item
|
||||
void playlist_set_cached(playlist_t* pl)
|
||||
{
|
||||
playlist_cached = pl;
|
||||
}
|
||||
|
@ -345,6 +345,8 @@ core_info_t *playlist_entry_get_core_info(const struct playlist_entry* entry);
|
||||
* default core association */
|
||||
core_info_t *playlist_get_default_core_info(playlist_t* playlist);
|
||||
|
||||
void playlist_set_cached(playlist_t* pl);
|
||||
|
||||
RETRO_END_DECLS
|
||||
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user