Some warning fixes
This commit is contained in:
parent
7c7d733d26
commit
477170884b
|
@ -240,7 +240,7 @@ void task_queue_deinit(void);
|
||||||
void task_queue_init(bool threaded, retro_task_queue_msg_t msg_push);
|
void task_queue_init(bool threaded, retro_task_queue_msg_t msg_push);
|
||||||
|
|
||||||
/* Allocs and inits a new retro_task_t */
|
/* Allocs and inits a new retro_task_t */
|
||||||
retro_task_t *task_init();
|
retro_task_t *task_init(void);
|
||||||
|
|
||||||
RETRO_END_DECLS
|
RETRO_END_DECLS
|
||||||
|
|
||||||
|
|
|
@ -82,9 +82,9 @@ bool task_push_load_content_with_new_core_from_companion_ui(
|
||||||
void *user_data);
|
void *user_data);
|
||||||
|
|
||||||
#ifdef HAVE_MENU
|
#ifdef HAVE_MENU
|
||||||
bool task_load_content_is_pending();
|
bool task_load_content_is_pending(void);
|
||||||
bool task_load_content_should_resume();
|
bool task_load_content_should_resume(void);
|
||||||
void task_load_content_resume();
|
void task_load_content_resume(void);
|
||||||
|
|
||||||
bool task_push_load_content_with_new_core_from_menu(
|
bool task_push_load_content_with_new_core_from_menu(
|
||||||
const char *core_path,
|
const char *core_path,
|
||||||
|
|
Loading…
Reference in New Issue