mirror of
https://github.com/azahar-emu/azahar.git
synced 2026-06-06 02:33:44 -04:00
libretro core: Add some ifdefs (#1765)
This commit is contained in:
parent
76db4b08f6
commit
13e0fdeac1
3 changed files with 6 additions and 0 deletions
|
|
@ -24,7 +24,9 @@ enum class InputType : u32 {
|
|||
Static = 2,
|
||||
Cubeb = 3,
|
||||
OpenAL = 4,
|
||||
#ifdef HAVE_LIBRETRO
|
||||
LibRetro = 5,
|
||||
#endif
|
||||
};
|
||||
|
||||
struct InputDetails {
|
||||
|
|
|
|||
|
|
@ -20,7 +20,9 @@ enum class SinkType : u32 {
|
|||
Cubeb = 2,
|
||||
OpenAL = 3,
|
||||
SDL2 = 4,
|
||||
#ifdef HAVE_LIBRETRO
|
||||
LibRetro = 5,
|
||||
#endif
|
||||
};
|
||||
|
||||
struct SinkDetails {
|
||||
|
|
|
|||
|
|
@ -15,7 +15,9 @@
|
|||
#include <ios>
|
||||
#include <limits>
|
||||
#include <memory>
|
||||
#ifdef HAVE_LIBRETRO
|
||||
#include <mutex>
|
||||
#endif
|
||||
#include <optional>
|
||||
#include <span>
|
||||
#include <string>
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue