Add test
This commit is contained in:
parent
b0746a4910
commit
3afd2497d2
|
@ -2623,7 +2623,12 @@ static enum runloop_state runloop_check_state(
|
||||||
command_event(CMD_EVENT_DISK_PREV, NULL);
|
command_event(CMD_EVENT_DISK_PREV, NULL);
|
||||||
|
|
||||||
if (runloop_cmd_triggered(trigger_input, RARCH_RESET))
|
if (runloop_cmd_triggered(trigger_input, RARCH_RESET))
|
||||||
|
{
|
||||||
command_event(CMD_EVENT_RESET, NULL);
|
command_event(CMD_EVENT_RESET, NULL);
|
||||||
|
#if 0
|
||||||
|
task_push_audio_mixer_load("/home/squarepusher/SumertimeBlues.ogg", NULL, NULL);
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
cheat_manager_state_checks(
|
cheat_manager_state_checks(
|
||||||
runloop_cmd_triggered(trigger_input, RARCH_CHEAT_INDEX_PLUS),
|
runloop_cmd_triggered(trigger_input, RARCH_CHEAT_INDEX_PLUS),
|
||||||
|
|
|
@ -78,6 +78,8 @@ static int cb_nbio_audio_wav_loaded(void *data, size_t len)
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
free(ptr);
|
||||||
|
|
||||||
image->is_finished = true;
|
image->is_finished = true;
|
||||||
nbio->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;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
image->is_finished = true;
|
image->is_finished = true;
|
||||||
nbio->is_finished = true;
|
nbio->is_finished = true;
|
||||||
|
|
||||||
|
|
|
@ -240,6 +240,8 @@ void task_push_get_powerstate(void);
|
||||||
|
|
||||||
enum frontend_powerstate get_last_powerstate(int *percent);
|
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[];
|
extern const char* const input_builtin_autoconfs[];
|
||||||
|
|
||||||
RETRO_END_DECLS
|
RETRO_END_DECLS
|
||||||
|
|
Loading…
Reference in New Issue