mirror of
https://github.com/Lime3DS/Lime3DS.git
synced 2026-03-27 13:50:22 -06:00
libretro core: Add some ifdefs (#1765)
This commit is contained in:
parent
76db4b08f6
commit
13e0fdeac1
@ -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…
Reference in New Issue
Block a user