mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-24 14:49:42 -06:00
Merge pull request #9323 from waddlesplash/haiku
Rehabilitate Haiku support.
This commit is contained in:
@ -37,6 +37,8 @@ constexpr u32 m_os = OS_ALL | OS_FREEBSD;
|
||||
constexpr u32 m_os = OS_ALL | OS_OPENBSD;
|
||||
#elif __NetBSD__
|
||||
constexpr u32 m_os = OS_ALL | OS_NETBSD;
|
||||
#elif __HAIKU__
|
||||
constexpr u32 m_os = OS_ALL | OS_HAIKU;
|
||||
#endif
|
||||
|
||||
static API m_api = API_OPENGL;
|
||||
|
@ -28,6 +28,7 @@ enum OS
|
||||
OS_FREEBSD = (1 << 5),
|
||||
OS_OPENBSD = (1 << 6),
|
||||
OS_NETBSD = (1 << 7),
|
||||
OS_HAIKU = (1 << 8),
|
||||
};
|
||||
// Enum of known vendors
|
||||
// Tegra and Nvidia are separated out due to such substantial differences
|
||||
|
Reference in New Issue
Block a user