Add toggle for libretro audio device (#719)

This commit is contained in:
wheremyfoodat 2025-02-09 14:58:17 +02:00 committed by GitHub
parent d42974b5db
commit 7d5cedf476
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
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