This commit is contained in:
twinaphex 2019-07-25 05:47:09 +02:00
parent 95c5d22c5a
commit 5047d6e709

View File

@ -16,14 +16,9 @@
#include <stdlib.h>
#include <lists/string_list.h>
#include <queues/fifo_queue.h>
#include "mmdevice_common.h"
#include "../../retroarch.h"
#include "../../verbosity.h"
#include "../../configuration.h"
void *mmdevice_list_new(void *u)
{
HRESULT hr;
@ -115,8 +110,6 @@ void *mmdevice_list_new(void *u)
if (!ir)
goto error;
RARCH_LOG("[WASAPI]: %s %s\n", dev_name_str, dev_id_str);
br = string_list_append(sl, dev_id_str, attr);
if (!br)
goto error;
@ -160,7 +153,5 @@ error:
if (sl)
string_list_free(sl);
RARCH_ERR("[WASAPI]: Device enumeration failed.\n");
return NULL;
}