Add toggle for libretro audio device

This commit is contained in:
wheremyfoodat 2025-02-09 14:57:33 +02:00
parent d42974b5db
commit 0a578ffe2a
2 changed files with 6 additions and 2 deletions

View file

@ -1,6 +1,6 @@
#pragma once
#ifdef __LIBRETRO__
#if defined(__LIBRETRO__) && defined(USE_LIBRETRO_AUDIO_DEVICE)
#include "audio/libretro_audio_device.hpp"
using AudioDevice = LibretroAudioDevice;
#else