mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 14:19:46 -06:00
Add an OpenBSD driver identifier.
This commit is contained in:
@ -32,6 +32,8 @@ const u32 m_os = OS_ALL | OS_OSX;
|
|||||||
const u32 m_os = OS_ALL | OS_LINUX;
|
const u32 m_os = OS_ALL | OS_LINUX;
|
||||||
#elif __FreeBSD__
|
#elif __FreeBSD__
|
||||||
const u32 m_os = OS_ALL | OS_FREEBSD;
|
const u32 m_os = OS_ALL | OS_FREEBSD;
|
||||||
|
#elif __OpenBSD__
|
||||||
|
const u32 m_os = OS_ALL | OS_OPENBSD;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
static Vendor m_vendor = VENDOR_UNKNOWN;
|
static Vendor m_vendor = VENDOR_UNKNOWN;
|
||||||
|
@ -17,6 +17,7 @@ enum OS
|
|||||||
OS_OSX = (1 << 3),
|
OS_OSX = (1 << 3),
|
||||||
OS_ANDROID = (1 << 4),
|
OS_ANDROID = (1 << 4),
|
||||||
OS_FREEBSD = (1 << 5),
|
OS_FREEBSD = (1 << 5),
|
||||||
|
OS_OPENBSD = (1 << 6),
|
||||||
};
|
};
|
||||||
// Enum of known vendors
|
// Enum of known vendors
|
||||||
// Tegra and Nvidia are separated out due to such substantial differences
|
// Tegra and Nvidia are separated out due to such substantial differences
|
||||||
|
Reference in New Issue
Block a user