mirror of
https://github.com/libretro/RetroArch
synced 2025-04-03 19:20:24 +00:00
Buildfix for --have-menu
This commit is contained in:
parent
eb4ed9b2f0
commit
b200ced199
@ -1126,7 +1126,7 @@ int generic_action_ok_displaylist_push(const char *path,
|
|||||||
{
|
{
|
||||||
content_ctx_info_t content_info = {0};
|
content_ctx_info_t content_info = {0};
|
||||||
filebrowser_clear_type();
|
filebrowser_clear_type();
|
||||||
task_push_load_subsystem_with_core_from_menu(
|
task_push_load_subsystem_with_core(
|
||||||
NULL, &content_info,
|
NULL, &content_info,
|
||||||
CORE_TYPE_PLAIN, NULL, NULL);
|
CORE_TYPE_PLAIN, NULL, NULL);
|
||||||
}
|
}
|
||||||
@ -2138,7 +2138,7 @@ static int default_action_ok_load_content_with_core_from_menu(const char *_path,
|
|||||||
content_info.argv = NULL;
|
content_info.argv = NULL;
|
||||||
content_info.args = NULL;
|
content_info.args = NULL;
|
||||||
content_info.environ_get = NULL;
|
content_info.environ_get = NULL;
|
||||||
if (!task_push_load_content_with_core_from_menu(
|
if (!task_push_load_content_with_core(
|
||||||
_path, &content_info,
|
_path, &content_info,
|
||||||
(enum rarch_core_type)_type, NULL, NULL))
|
(enum rarch_core_type)_type, NULL, NULL))
|
||||||
return -1;
|
return -1;
|
||||||
@ -2502,7 +2502,7 @@ static int action_ok_playlist_entry_collection(const char *path,
|
|||||||
for (i = 0; i < entry->subsystem_roms->size; i++)
|
for (i = 0; i < entry->subsystem_roms->size; i++)
|
||||||
content_add_subsystem(entry->subsystem_roms->elems[i].data);
|
content_add_subsystem(entry->subsystem_roms->elems[i].data);
|
||||||
|
|
||||||
task_push_load_subsystem_with_core_from_menu(
|
task_push_load_subsystem_with_core(
|
||||||
NULL, &content_info,
|
NULL, &content_info,
|
||||||
CORE_TYPE_PLAIN, NULL, NULL);
|
CORE_TYPE_PLAIN, NULL, NULL);
|
||||||
|
|
||||||
@ -2692,7 +2692,7 @@ static int action_ok_load_cdrom(const char *path,
|
|||||||
content_info.args = NULL;
|
content_info.args = NULL;
|
||||||
content_info.environ_get = NULL;
|
content_info.environ_get = NULL;
|
||||||
|
|
||||||
task_push_load_content_with_core_from_menu(cdrom_path, &content_info, CORE_TYPE_PLAIN, NULL, NULL);
|
task_push_load_content_with_core(cdrom_path, &content_info, CORE_TYPE_PLAIN, NULL, NULL);
|
||||||
}
|
}
|
||||||
#else
|
#else
|
||||||
frontend_driver_set_fork(FRONTEND_FORK_CORE_WITH_ARGS);
|
frontend_driver_set_fork(FRONTEND_FORK_CORE_WITH_ARGS);
|
||||||
|
@ -39,6 +39,7 @@
|
|||||||
#include "menu_driver.h"
|
#include "menu_driver.h"
|
||||||
#include "menu_cbs.h"
|
#include "menu_cbs.h"
|
||||||
#include "../driver.h"
|
#include "../driver.h"
|
||||||
|
#include "../list_special.h"
|
||||||
#include "../paths.h"
|
#include "../paths.h"
|
||||||
#include "../tasks/task_powerstate.h"
|
#include "../tasks/task_powerstate.h"
|
||||||
#include "../tasks/tasks_internal.h"
|
#include "../tasks/tasks_internal.h"
|
||||||
|
@ -1682,9 +1682,7 @@ bool menu_shader_manager_set_preset(struct video_shader *shader,
|
|||||||
ret = true;
|
ret = true;
|
||||||
|
|
||||||
end:
|
end:
|
||||||
#ifdef HAVE_MENU
|
|
||||||
menu_entries_ctl(MENU_ENTRIES_CTL_SET_REFRESH, &refresh);
|
menu_entries_ctl(MENU_ENTRIES_CTL_SET_REFRESH, &refresh);
|
||||||
#endif
|
|
||||||
command_event(CMD_EVENT_SHADER_PRESET_LOADED, NULL);
|
command_event(CMD_EVENT_SHADER_PRESET_LOADED, NULL);
|
||||||
return ret;
|
return ret;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user