mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-09-29 12:48:46 +00:00
Fix FreeBSD build
This commit is contained in:
parent
0ca955a14c
commit
7085fcc8d6
9 changed files with 28 additions and 9 deletions
|
@ -30,6 +30,8 @@ namespace DriverDetails
|
|||
const u32 m_os = OS_ALL | OS_OSX;
|
||||
#elif __linux__
|
||||
const u32 m_os = OS_ALL | OS_LINUX;
|
||||
#elif __FreeBSD__
|
||||
const u32 m_os = OS_ALL | OS_FREEBSD;
|
||||
#endif
|
||||
|
||||
static Vendor m_vendor = VENDOR_UNKNOWN;
|
||||
|
|
|
@ -14,6 +14,7 @@ namespace DriverDetails
|
|||
OS_LINUX = (1 << 2),
|
||||
OS_OSX = (1 << 3),
|
||||
OS_ANDROID = (1 << 4),
|
||||
OS_FREEBSD = (1 << 5),
|
||||
};
|
||||
// Enum of known vendors
|
||||
// Tegra and Nvidia are separated out due to such substantial differences
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue