Exemplo n.º 1
0
void rarch_main_clear_state(void)
{
   driver_clear_state();

   rarch_main_state_free();

   rarch_main_global_free();
}
Exemplo n.º 2
0
void rarch_main_free(void)
{
   event_command(EVENT_CMD_MSG_QUEUE_DEINIT);
   event_command(EVENT_CMD_LOG_FILE_DEINIT);
   event_command(EVENT_CMD_DRIVERS_DEINIT);

   rarch_main_state_free();
   rarch_main_global_free();
   config_free();
}
Exemplo n.º 3
0
void rarch_main_clear_state(void)
{
   driver_clear_state();

   rarch_main_state_free();
   g_runloop = rarch_main_state_init();

   rarch_main_global_free();
   g_extern  = rarch_main_global_new();
}