diff --git a/frontend/frontend.h b/frontend/frontend.h index 312d9ef85c..5679133f86 100644 --- a/frontend/frontend.h +++ b/frontend/frontend.h @@ -75,6 +75,16 @@ bool main_load_content(int argc, char **argv, args_type() args, environment_get_t environ_get, process_args_t process_args); +/** + * main_entry_decide: + * + * Runs RetroArch for one frame. + * + * Returns: -1 upon exiting, 0 if we want to + * iterate to the next frame. + **/ +int main_entry_decide(signature(), args_type() args); + #ifdef __cplusplus } #endif diff --git a/frontend/frontend_context.h b/frontend/frontend_context.h index 5ce225ae7f..095f072179 100644 --- a/frontend/frontend_context.h +++ b/frontend/frontend_context.h @@ -99,16 +99,6 @@ const frontend_ctx_driver_t *frontend_ctx_find_driver(const char *ident); **/ const frontend_ctx_driver_t *frontend_ctx_init_first(void); -/** - * main_entry_decide: - * - * Runs RetroArch for one frame. - * - * Returns: -1 upon exiting, 0 if we want to - * iterate to the next frame. - **/ -int main_entry_decide(signature(), args_type() args); - #ifdef __cplusplus } #endif