diff options
| author | Matthew Parlane <parlane@gmail.com> | 2015-06-14 15:18:26 +1000 |
|---|---|---|
| committer | Matthew Parlane <parlane@gmail.com> | 2015-06-14 15:18:26 +1000 |
| commit | b39014eac5a5dbc8cc725cfe8c0b3962bdac075f (patch) | |
| tree | e1852e2d9300cbdacc920aec1dac7cb25a14419b /Source/Core/VideoCommon/DriverDetails.cpp | |
| parent | 252c7195151f6b91b16cf9d42f12c0d431d77e50 (diff) | |
| parent | 1b9f55692bd0a88df745f97674cbe03f9ddfae10 (diff) | |
Merge pull request #2590 from endrift/fix-freebsd-build
Fix FreeBSD
Diffstat (limited to 'Source/Core/VideoCommon/DriverDetails.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/DriverDetails.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/Core/VideoCommon/DriverDetails.cpp b/Source/Core/VideoCommon/DriverDetails.cpp index aa2e34d184..d3b1883cb3 100644 --- a/Source/Core/VideoCommon/DriverDetails.cpp +++ b/Source/Core/VideoCommon/DriverDetails.cpp @@ -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; |
