2013-02-25 06:01:16 +00:00
|
|
|
/* RetroArch - A frontend for libretro.
|
2014-01-01 00:50:59 +00:00
|
|
|
* Copyright (C) 2010-2014 - Hans-Kristian Arntzen
|
|
|
|
* Copyright (C) 2011-2014 - Daniel De Matteis
|
|
|
|
* Copyright (C) 2012-2014 - Michael Lelli
|
2013-02-25 06:01:16 +00:00
|
|
|
*
|
|
|
|
* RetroArch is free software: you can redistribute it and/or modify it under the terms
|
|
|
|
* of the GNU General Public License as published by the Free Software Found-
|
|
|
|
* ation, either version 3 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* RetroArch is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
|
|
|
|
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
|
|
|
* PURPOSE. See the GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along with RetroArch.
|
|
|
|
* If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2013-12-28 20:08:30 +00:00
|
|
|
#include "frontend.h"
|
2013-02-25 06:01:16 +00:00
|
|
|
#include "../general.h"
|
2013-03-20 00:17:10 +00:00
|
|
|
#include "../conf/config_file.h"
|
2013-03-17 11:27:33 +00:00
|
|
|
#include "../file.h"
|
2013-02-25 06:01:16 +00:00
|
|
|
|
2013-07-26 18:58:47 +00:00
|
|
|
#include "frontend_context.h"
|
|
|
|
|
2013-11-08 03:36:16 +00:00
|
|
|
#if defined(HAVE_MENU)
|
2014-03-02 04:24:57 +00:00
|
|
|
#include "menu/menu_input_line_cb.h"
|
2013-09-15 16:49:18 +00:00
|
|
|
#include "menu/menu_common.h"
|
2013-04-28 13:23:57 +00:00
|
|
|
#endif
|
|
|
|
|
2013-07-15 12:54:40 +00:00
|
|
|
#include "../file_ext.h"
|
2013-07-15 12:19:29 +00:00
|
|
|
|
2014-05-20 00:33:09 +00:00
|
|
|
#if defined(RARCH_CONSOLE) || defined(__QNX__)
|
2013-07-15 12:19:29 +00:00
|
|
|
#include "../config.def.h"
|
2013-08-10 18:59:10 +00:00
|
|
|
#endif
|
2013-07-15 11:40:47 +00:00
|
|
|
|
2013-12-28 03:40:23 +00:00
|
|
|
#if defined(ANDROID)
|
2014-02-23 00:18:27 +00:00
|
|
|
|
2013-10-07 11:29:51 +00:00
|
|
|
#define main_entry android_app_entry
|
2013-11-03 15:49:54 +00:00
|
|
|
#define returntype void
|
2013-12-28 20:08:30 +00:00
|
|
|
#define signature_expand() data
|
2013-10-07 11:29:51 +00:00
|
|
|
#define returnfunc() exit(0)
|
2013-11-03 15:38:56 +00:00
|
|
|
#define return_negative() return
|
|
|
|
#define return_var(var) return
|
|
|
|
#define declare_argc() int argc = 0;
|
|
|
|
#define declare_argv() char *argv[1]
|
|
|
|
#define args_initial_ptr() data
|
2014-02-23 00:18:27 +00:00
|
|
|
#else
|
|
|
|
|
|
|
|
#if defined(__APPLE__) || defined(HAVE_BB10)
|
2013-08-14 12:10:49 +00:00
|
|
|
#define main_entry rarch_main
|
2013-12-29 21:19:07 +00:00
|
|
|
#elif defined(EMSCRIPTEN)
|
|
|
|
#define main_entry _fakemain
|
2013-07-16 11:06:13 +00:00
|
|
|
#else
|
2013-08-14 12:10:49 +00:00
|
|
|
#define main_entry main
|
2014-02-23 00:18:27 +00:00
|
|
|
#endif
|
|
|
|
|
2013-10-07 11:29:51 +00:00
|
|
|
#define returntype int
|
2013-12-28 20:08:30 +00:00
|
|
|
#define signature_expand() argc, argv
|
2013-10-07 11:29:51 +00:00
|
|
|
#define returnfunc() return 0
|
2013-10-07 11:47:39 +00:00
|
|
|
#define return_negative() return 1
|
2013-11-03 15:38:56 +00:00
|
|
|
#define return_var(var) return var
|
|
|
|
#define declare_argc()
|
|
|
|
#define declare_argv()
|
|
|
|
#define args_initial_ptr() NULL
|
2014-02-23 00:18:27 +00:00
|
|
|
|
2013-08-14 04:48:58 +00:00
|
|
|
#endif
|
2013-08-14 12:10:49 +00:00
|
|
|
|
2014-05-20 00:33:09 +00:00
|
|
|
#if !defined(RARCH_CONSOLE) && !defined(__QNX__) && !defined(ANDROID)
|
2013-11-03 03:46:03 +00:00
|
|
|
#define attempt_load_game_push_history true
|
2013-11-18 08:27:18 +00:00
|
|
|
#else
|
|
|
|
#define attempt_load_game_push_history false
|
2013-11-03 03:46:03 +00:00
|
|
|
#endif
|
|
|
|
|
2014-04-30 02:00:39 +00:00
|
|
|
static retro_keyboard_event_t key_event;
|
2013-11-04 12:08:19 +00:00
|
|
|
|
2014-01-23 19:00:25 +00:00
|
|
|
#ifdef HAVE_MENU
|
2014-04-30 02:00:39 +00:00
|
|
|
static int main_entry_iterate_clear_input(args_type() args)
|
|
|
|
{
|
2014-05-17 20:16:25 +00:00
|
|
|
(void)args;
|
|
|
|
|
2014-04-30 02:00:39 +00:00
|
|
|
rarch_input_poll();
|
2014-05-30 17:33:10 +00:00
|
|
|
if (!menu_input())
|
2014-02-18 01:18:34 +00:00
|
|
|
{
|
2014-04-30 02:00:39 +00:00
|
|
|
// Restore libretro keyboard callback.
|
|
|
|
g_extern.system.key_event = key_event;
|
2014-02-18 01:18:34 +00:00
|
|
|
|
2014-04-30 02:00:39 +00:00
|
|
|
g_extern.lifecycle_state &= ~(1ULL << MODE_CLEAR_INPUT);
|
2014-02-18 01:18:34 +00:00
|
|
|
}
|
2013-07-15 18:49:36 +00:00
|
|
|
|
2014-04-30 02:00:39 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2013-03-16 09:35:22 +00:00
|
|
|
|
2014-04-30 02:00:39 +00:00
|
|
|
static int main_entry_iterate_shutdown(args_type() args)
|
|
|
|
{
|
2014-05-17 20:16:25 +00:00
|
|
|
(void)args;
|
|
|
|
|
2014-04-30 02:00:39 +00:00
|
|
|
#ifdef HAVE_MENU
|
|
|
|
// Load dummy core instead of exiting RetroArch completely.
|
|
|
|
if (g_settings.load_dummy_on_core_shutdown)
|
2014-05-30 17:33:10 +00:00
|
|
|
load_menu_game_prepare_dummy();
|
2014-04-30 02:00:39 +00:00
|
|
|
else
|
|
|
|
#endif
|
|
|
|
return 1;
|
2013-07-15 18:49:36 +00:00
|
|
|
|
2014-04-30 02:00:39 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2013-07-27 14:36:55 +00:00
|
|
|
|
2013-03-16 09:35:22 +00:00
|
|
|
|
2014-04-30 02:00:39 +00:00
|
|
|
static int main_entry_iterate_content(args_type() args)
|
|
|
|
{
|
|
|
|
bool r;
|
|
|
|
if (g_extern.is_paused && !g_extern.is_oneshot)
|
|
|
|
r = rarch_main_idle_iterate();
|
|
|
|
else
|
|
|
|
r = rarch_main_iterate();
|
|
|
|
|
|
|
|
if (r)
|
|
|
|
{
|
2014-05-13 18:23:15 +00:00
|
|
|
if (driver.frontend_ctx && driver.frontend_ctx->process_events)
|
|
|
|
driver.frontend_ctx->process_events(args);
|
2013-11-03 03:46:03 +00:00
|
|
|
}
|
2014-04-30 02:00:39 +00:00
|
|
|
else
|
|
|
|
g_extern.lifecycle_state &= ~(1ULL << MODE_GAME);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int main_entry_iterate_load_content(args_type() args)
|
|
|
|
{
|
2014-05-30 17:33:10 +00:00
|
|
|
load_menu_game_prepare();
|
2014-04-30 02:00:39 +00:00
|
|
|
|
2014-05-30 17:33:10 +00:00
|
|
|
if (load_menu_game())
|
2013-12-28 20:08:30 +00:00
|
|
|
{
|
2014-04-30 02:00:39 +00:00
|
|
|
g_extern.lifecycle_state |= (1ULL << MODE_GAME);
|
|
|
|
if (driver.video_data && driver.video_poke && driver.video_poke->set_aspect_ratio)
|
|
|
|
driver.video_poke->set_aspect_ratio(driver.video_data, g_settings.video.aspect_ratio_idx);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-05-12 14:01:00 +00:00
|
|
|
#if defined(RARCH_CONSOLE) || defined(RARCH_MOBILE)
|
|
|
|
// If ROM load fails, we go back to menu.
|
|
|
|
g_extern.lifecycle_state = (1ULL << MODE_MENU_PREINIT);
|
|
|
|
#else
|
|
|
|
// If ROM load fails, we exit RetroArch.
|
|
|
|
g_extern.system.shutdown = true;
|
|
|
|
#endif
|
2013-12-28 20:08:30 +00:00
|
|
|
}
|
2014-04-30 02:00:39 +00:00
|
|
|
|
|
|
|
g_extern.lifecycle_state &= ~(1ULL << MODE_LOAD_GAME);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int main_entry_iterate_menu_preinit(args_type() args)
|
|
|
|
{
|
|
|
|
int i;
|
2014-05-09 03:47:32 +00:00
|
|
|
rgui_handle_t *rgui = (rgui_handle_t*)driver.menu;
|
2014-04-30 02:00:39 +00:00
|
|
|
|
2014-05-30 15:49:04 +00:00
|
|
|
if (!rgui)
|
|
|
|
return 1;
|
|
|
|
|
2014-04-30 02:00:39 +00:00
|
|
|
// Menu should always run with vsync on.
|
|
|
|
video_set_nonblock_state_func(false);
|
|
|
|
// Stop all rumbling when entering RGUI.
|
|
|
|
for (i = 0; i < MAX_PLAYERS; i++)
|
2013-03-16 09:35:22 +00:00
|
|
|
{
|
2014-04-30 02:00:39 +00:00
|
|
|
driver_set_rumble_state(i, RETRO_RUMBLE_STRONG, 0);
|
|
|
|
driver_set_rumble_state(i, RETRO_RUMBLE_WEAK, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Override keyboard callback to redirect to menu instead.
|
|
|
|
// We'll use this later for something ...
|
|
|
|
// FIXME: This should probably be moved to menu_common somehow.
|
|
|
|
key_event = g_extern.system.key_event;
|
|
|
|
g_extern.system.key_event = menu_key_event;
|
|
|
|
|
|
|
|
if (driver.audio_data)
|
|
|
|
audio_stop_func();
|
2013-04-28 13:00:37 +00:00
|
|
|
|
2014-04-30 02:00:39 +00:00
|
|
|
rgui->need_refresh = true;
|
|
|
|
rgui->old_input_state |= 1ULL << RARCH_MENU_TOGGLE;
|
2013-07-27 15:40:21 +00:00
|
|
|
|
2014-04-30 02:00:39 +00:00
|
|
|
g_extern.lifecycle_state &= ~(1ULL << MODE_MENU_PREINIT);
|
|
|
|
g_extern.lifecycle_state |= (1ULL << MODE_MENU);
|
2013-11-03 05:14:02 +00:00
|
|
|
|
2014-04-30 02:00:39 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2013-04-28 13:00:37 +00:00
|
|
|
|
2014-04-30 02:00:39 +00:00
|
|
|
static int main_entry_iterate_menu(args_type() args)
|
|
|
|
{
|
2014-05-30 18:53:10 +00:00
|
|
|
if (menu_iterate())
|
2014-04-30 02:00:39 +00:00
|
|
|
{
|
2014-05-13 18:23:15 +00:00
|
|
|
if (driver.frontend_ctx && driver.frontend_ctx->process_events)
|
|
|
|
driver.frontend_ctx->process_events(args);
|
2013-12-28 20:08:30 +00:00
|
|
|
}
|
2014-04-30 02:00:39 +00:00
|
|
|
else
|
2013-12-28 20:08:30 +00:00
|
|
|
{
|
2014-04-30 02:00:39 +00:00
|
|
|
g_extern.lifecycle_state &= ~(1ULL << MODE_MENU);
|
|
|
|
driver_set_nonblock_state(driver.nonblock_state);
|
|
|
|
|
|
|
|
if (driver.audio_data && !g_extern.audio_data.mute && !audio_start_func())
|
2013-03-16 09:35:22 +00:00
|
|
|
{
|
2014-04-30 02:00:39 +00:00
|
|
|
RARCH_ERR("Failed to resume audio driver. Will continue without audio.\n");
|
|
|
|
g_extern.audio_active = false;
|
2013-03-16 09:35:22 +00:00
|
|
|
}
|
2013-06-02 21:10:03 +00:00
|
|
|
|
2014-04-30 02:00:39 +00:00
|
|
|
g_extern.lifecycle_state |= (1ULL << MODE_CLEAR_INPUT);
|
2013-06-02 21:10:03 +00:00
|
|
|
|
2014-04-30 02:00:39 +00:00
|
|
|
// If QUIT state came from command interface, we'll only see it once due to MODE_CLEAR_INPUT.
|
|
|
|
if (input_key_pressed_func(RARCH_QUIT_KEY) || !video_alive_func())
|
|
|
|
return 1;
|
2013-12-28 20:08:30 +00:00
|
|
|
}
|
2014-04-30 02:00:39 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int main_entry_iterate(signature(), args_type() args)
|
|
|
|
{
|
|
|
|
if (g_extern.system.shutdown)
|
|
|
|
return main_entry_iterate_shutdown(args);
|
|
|
|
else if (g_extern.lifecycle_state & (1ULL << MODE_CLEAR_INPUT))
|
|
|
|
return main_entry_iterate_clear_input(args);
|
|
|
|
else if (g_extern.lifecycle_state & (1ULL << MODE_LOAD_GAME))
|
|
|
|
return main_entry_iterate_load_content(args);
|
|
|
|
else if (g_extern.lifecycle_state & (1ULL << MODE_GAME))
|
|
|
|
return main_entry_iterate_content(args);
|
|
|
|
#ifdef HAVE_MENU
|
|
|
|
else if (g_extern.lifecycle_state & (1ULL << MODE_MENU_PREINIT))
|
|
|
|
main_entry_iterate_menu_preinit(args);
|
|
|
|
else if (g_extern.lifecycle_state & (1ULL << MODE_MENU))
|
|
|
|
return main_entry_iterate_menu(args);
|
2013-12-28 20:08:30 +00:00
|
|
|
#endif
|
|
|
|
else
|
|
|
|
return 1;
|
2013-03-16 09:35:22 +00:00
|
|
|
|
2013-12-28 20:08:30 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2014-04-30 02:00:39 +00:00
|
|
|
#endif
|
|
|
|
|
2013-11-04 12:08:19 +00:00
|
|
|
|
2013-12-28 20:08:30 +00:00
|
|
|
void main_exit(args_type() args)
|
|
|
|
{
|
2013-07-15 11:40:47 +00:00
|
|
|
g_extern.system.shutdown = false;
|
2013-11-04 12:08:19 +00:00
|
|
|
|
2013-05-22 17:49:51 +00:00
|
|
|
if (g_extern.config_save_on_exit && *g_extern.config_path)
|
2014-01-01 19:44:20 +00:00
|
|
|
{
|
2014-01-02 16:25:05 +00:00
|
|
|
// save last core-specific config to the default config location, needed on
|
|
|
|
// consoles for core switching and reusing last good config for new cores.
|
2013-05-22 17:44:00 +00:00
|
|
|
config_save_file(g_extern.config_path);
|
2014-01-01 19:44:20 +00:00
|
|
|
|
2014-01-02 16:25:05 +00:00
|
|
|
// Flush out the core specific config.
|
2014-01-02 17:01:01 +00:00
|
|
|
if (*g_extern.core_specific_config_path && g_settings.core_specific_config)
|
2014-01-02 16:25:05 +00:00
|
|
|
config_save_file(g_extern.core_specific_config_path);
|
2014-01-01 19:44:20 +00:00
|
|
|
}
|
2013-07-15 11:40:47 +00:00
|
|
|
|
2014-01-03 13:39:46 +00:00
|
|
|
if (g_extern.main_is_init)
|
2014-05-31 21:53:03 +00:00
|
|
|
{
|
|
|
|
driver.menu_data_own = false; // Do not want menu context to live any more.
|
2014-01-03 13:39:46 +00:00
|
|
|
rarch_main_deinit();
|
2014-05-31 21:53:03 +00:00
|
|
|
}
|
2013-02-25 06:01:16 +00:00
|
|
|
rarch_deinit_msg_queue();
|
|
|
|
|
2013-12-17 18:37:33 +00:00
|
|
|
#ifdef PERF_TEST
|
2013-12-19 00:51:51 +00:00
|
|
|
rarch_perf_log();
|
2013-12-17 18:37:33 +00:00
|
|
|
#endif
|
2013-02-25 06:01:16 +00:00
|
|
|
|
2013-11-03 15:38:56 +00:00
|
|
|
#if defined(HAVE_LOGGER) && !defined(ANDROID)
|
2013-07-15 12:19:29 +00:00
|
|
|
logger_shutdown();
|
|
|
|
#elif defined(HAVE_FILE_LOGGER)
|
|
|
|
if (g_extern.log_file)
|
|
|
|
fclose(g_extern.log_file);
|
|
|
|
g_extern.log_file = NULL;
|
|
|
|
#endif
|
2013-07-27 14:36:55 +00:00
|
|
|
|
2014-05-13 18:23:15 +00:00
|
|
|
if (driver.frontend_ctx && driver.frontend_ctx->deinit)
|
|
|
|
driver.frontend_ctx->deinit(args);
|
2013-07-15 12:19:29 +00:00
|
|
|
|
2014-05-13 18:23:15 +00:00
|
|
|
if (g_extern.lifecycle_state & (1ULL << MODE_EXITSPAWN) && driver.frontend_ctx
|
|
|
|
&& driver.frontend_ctx->exitspawn)
|
|
|
|
driver.frontend_ctx->exitspawn();
|
2013-07-15 12:19:29 +00:00
|
|
|
|
2013-02-25 06:01:16 +00:00
|
|
|
rarch_main_clear_state();
|
2013-07-15 11:40:47 +00:00
|
|
|
|
2014-05-13 18:23:15 +00:00
|
|
|
if (driver.frontend_ctx && driver.frontend_ctx->shutdown)
|
|
|
|
driver.frontend_ctx->shutdown(false);
|
2013-12-28 20:08:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
returntype main_entry(signature())
|
|
|
|
{
|
|
|
|
declare_argc();
|
|
|
|
declare_argv();
|
|
|
|
args_type() args = (args_type())args_initial_ptr();
|
|
|
|
|
2014-05-13 18:23:15 +00:00
|
|
|
driver.frontend_ctx = (frontend_ctx_driver_t*)frontend_ctx_init_first();
|
2013-12-28 20:08:30 +00:00
|
|
|
|
2014-05-13 18:23:15 +00:00
|
|
|
if (!driver.frontend_ctx)
|
2014-05-09 04:12:53 +00:00
|
|
|
{
|
|
|
|
RARCH_WARN("Frontend context could not be initialized.\n");
|
2013-12-28 20:08:30 +00:00
|
|
|
}
|
|
|
|
|
2014-05-13 18:23:15 +00:00
|
|
|
if (driver.frontend_ctx && driver.frontend_ctx->init)
|
|
|
|
driver.frontend_ctx->init(args);
|
2014-05-09 04:12:53 +00:00
|
|
|
|
2014-05-28 20:44:25 +00:00
|
|
|
rarch_main_clear_state();
|
2014-05-31 14:31:03 +00:00
|
|
|
rarch_init_msg_queue();
|
2013-12-28 20:08:30 +00:00
|
|
|
|
2014-05-13 18:23:15 +00:00
|
|
|
if (driver.frontend_ctx && driver.frontend_ctx->environment_get)
|
2013-12-28 20:08:30 +00:00
|
|
|
{
|
2014-06-01 03:56:38 +00:00
|
|
|
driver.frontend_ctx->environment_get(&argc, argv, args);
|
2014-05-31 06:17:18 +00:00
|
|
|
#if defined(RARCH_CONSOLE) || defined(__QNX__)
|
|
|
|
if (*default_paths.autoconfig_dir)
|
|
|
|
path_mkdir(default_paths.autoconfig_dir);
|
2014-06-01 03:52:16 +00:00
|
|
|
if (*default_paths.audio_filter_dir)
|
|
|
|
path_mkdir(default_paths.audio_filter_dir);
|
2014-05-31 06:17:18 +00:00
|
|
|
if (*default_paths.assets_dir)
|
|
|
|
path_mkdir(default_paths.assets_dir);
|
|
|
|
if (*default_paths.core_dir)
|
|
|
|
path_mkdir(default_paths.core_dir);
|
|
|
|
if (*default_paths.core_info_dir)
|
|
|
|
path_mkdir(default_paths.core_info_dir);
|
|
|
|
if (*default_paths.overlay_dir)
|
|
|
|
path_mkdir(default_paths.overlay_dir);
|
|
|
|
if (*default_paths.port_dir)
|
|
|
|
path_mkdir(default_paths.port_dir);
|
|
|
|
if (*default_paths.shader_dir)
|
|
|
|
path_mkdir(default_paths.shader_dir);
|
|
|
|
if (*default_paths.savestate_dir)
|
|
|
|
path_mkdir(default_paths.savestate_dir);
|
|
|
|
if (*default_paths.sram_dir)
|
|
|
|
path_mkdir(default_paths.sram_dir);
|
|
|
|
if (*default_paths.system_dir)
|
|
|
|
path_mkdir(default_paths.system_dir);
|
|
|
|
#endif
|
2013-12-28 20:08:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
int init_ret;
|
|
|
|
if ((init_ret = rarch_main_init(argc, argv))) return_var(init_ret);
|
|
|
|
}
|
|
|
|
|
|
|
|
#if defined(HAVE_MENU)
|
2014-05-13 18:23:15 +00:00
|
|
|
if (driver.frontend_ctx && driver.frontend_ctx->process_args)
|
2014-06-01 03:56:38 +00:00
|
|
|
driver.frontend_ctx->process_args(&argc, argv, args);
|
2013-12-28 20:08:30 +00:00
|
|
|
|
2014-05-28 20:44:25 +00:00
|
|
|
g_extern.lifecycle_state |= (1ULL << MODE_GAME);
|
2013-12-28 20:08:30 +00:00
|
|
|
|
|
|
|
if (attempt_load_game_push_history)
|
|
|
|
{
|
|
|
|
// If we started a ROM directly from command line,
|
|
|
|
// push it to ROM history.
|
|
|
|
if (!g_extern.libretro_dummy)
|
2014-05-30 17:33:10 +00:00
|
|
|
menu_rom_history_push_current();
|
2013-12-28 20:08:30 +00:00
|
|
|
}
|
|
|
|
|
2014-01-02 16:25:05 +00:00
|
|
|
while (!main_entry_iterate(signature_expand(), args));
|
2013-12-28 20:08:30 +00:00
|
|
|
#else
|
|
|
|
while ((g_extern.is_paused && !g_extern.is_oneshot) ? rarch_main_idle_iterate() : rarch_main_iterate());
|
|
|
|
#endif
|
|
|
|
|
|
|
|
main_exit(args);
|
2013-07-15 11:40:47 +00:00
|
|
|
|
2013-10-07 11:29:51 +00:00
|
|
|
returnfunc();
|
2013-07-15 11:40:47 +00:00
|
|
|
}
|