This commit is contained in:
twinaphex 2017-05-15 11:25:45 +02:00
parent 2becbaf4e2
commit 5fc5cb4962
1 changed files with 4 additions and 4 deletions

View File

@ -32,7 +32,7 @@
#include "tasks_internal.h" #include "tasks_internal.h"
struct nbio_audio_mixer_handle struct audio_mixer_handle
{ {
enum audio_mixer_type type; enum audio_mixer_type type;
char path[4095]; char path[4095];
@ -51,7 +51,7 @@ static void task_audio_mixer_load_handler(retro_task_t *task)
void *buffer = NULL; void *buffer = NULL;
ssize_t size = 0; ssize_t size = 0;
audio_mixer_sound_t *handle = NULL; audio_mixer_sound_t *handle = NULL;
struct nbio_audio_mixer_handle *image = (struct nbio_audio_mixer_handle*)task->state; struct audio_mixer_handle *image = (struct audio_mixer_handle*)task->state;
if (filestream_read_file(image->path, &buffer, &size) == 0) if (filestream_read_file(image->path, &buffer, &size) == 0)
{ {
@ -87,13 +87,13 @@ static void task_audio_mixer_load_handler(retro_task_t *task)
bool task_push_audio_mixer_load(const char *fullpath, retro_task_callback_t cb, void *user_data) bool task_push_audio_mixer_load(const char *fullpath, retro_task_callback_t cb, void *user_data)
{ {
struct nbio_audio_mixer_handle *image = NULL; struct audio_mixer_handle *image = NULL;
retro_task_t *t = (retro_task_t*)calloc(1, sizeof(*t)); retro_task_t *t = (retro_task_t*)calloc(1, sizeof(*t));
if (!t) if (!t)
goto error_msg; goto error_msg;
image = (struct nbio_audio_mixer_handle*)calloc(1, sizeof(*image)); image = (struct audio_mixer_handle*)calloc(1, sizeof(*image));
if (!image) if (!image)
goto error; goto error;