From 5fc5cb4962c39ec2fe220b4330d94af7301983c1 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Mon, 15 May 2017 11:25:45 +0200 Subject: [PATCH] Cleanups --- tasks/task_audio_mixer.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tasks/task_audio_mixer.c b/tasks/task_audio_mixer.c index 0a2bbdaae0..4fb4a28b48 100644 --- a/tasks/task_audio_mixer.c +++ b/tasks/task_audio_mixer.c @@ -32,7 +32,7 @@ #include "tasks_internal.h" -struct nbio_audio_mixer_handle +struct audio_mixer_handle { enum audio_mixer_type type; char path[4095]; @@ -51,7 +51,7 @@ static void task_audio_mixer_load_handler(retro_task_t *task) void *buffer = NULL; ssize_t size = 0; 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) { @@ -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) { - struct nbio_audio_mixer_handle *image = NULL; + struct audio_mixer_handle *image = NULL; retro_task_t *t = (retro_task_t*)calloc(1, sizeof(*t)); if (!t) goto error_msg; - image = (struct nbio_audio_mixer_handle*)calloc(1, sizeof(*image)); + image = (struct audio_mixer_handle*)calloc(1, sizeof(*image)); if (!image) goto error;