This commit is contained in:
twinaphex 2017-05-14 23:27:03 +02:00
parent b0746a4910
commit 3afd2497d2
3 changed files with 9 additions and 1 deletions

View File

@ -2623,7 +2623,12 @@ static enum runloop_state runloop_check_state(
command_event(CMD_EVENT_DISK_PREV, NULL);
if (runloop_cmd_triggered(trigger_input, RARCH_RESET))
{
command_event(CMD_EVENT_RESET, NULL);
#if 0
task_push_audio_mixer_load("/home/squarepusher/SumertimeBlues.ogg", NULL, NULL);
#endif
}
cheat_manager_state_checks(
runloop_cmd_triggered(trigger_input, RARCH_CHEAT_INDEX_PLUS),

View File

@ -78,6 +78,8 @@ static int cb_nbio_audio_wav_loaded(void *data, size_t len)
return -1;
}
free(ptr);
image->is_finished = true;
nbio->is_finished = true;
@ -104,7 +106,6 @@ static int cb_nbio_audio_ogg_loaded(void *data, size_t len)
return -1;
}
image->is_finished = true;
nbio->is_finished = true;

View File

@ -240,6 +240,8 @@ void task_push_get_powerstate(void);
enum frontend_powerstate get_last_powerstate(int *percent);
bool task_push_audio_mixer_load(const char *fullpath, retro_task_callback_t cb, void *user_data);
extern const char* const input_builtin_autoconfs[];
RETRO_END_DECLS