Some warning fixes

This commit is contained in:
Twinaphex 2019-02-06 23:25:41 +01:00
parent 7c7d733d26
commit 477170884b
2 changed files with 4 additions and 4 deletions

View File

@ -240,7 +240,7 @@ void task_queue_deinit(void);
void task_queue_init(bool threaded, retro_task_queue_msg_t msg_push);
/* Allocs and inits a new retro_task_t */
retro_task_t *task_init();
retro_task_t *task_init(void);
RETRO_END_DECLS

View File

@ -82,9 +82,9 @@ bool task_push_load_content_with_new_core_from_companion_ui(
void *user_data);
#ifdef HAVE_MENU
bool task_load_content_is_pending();
bool task_load_content_should_resume();
void task_load_content_resume();
bool task_load_content_is_pending(void);
bool task_load_content_should_resume(void);
void task_load_content_resume(void);
bool task_push_load_content_with_new_core_from_menu(
const char *core_path,