diff options
| author | 2021-03-24 16:52:27 -0700 | |
|---|---|---|
| committer | 2021-03-24 16:52:27 -0700 | |
| commit | b83eb4dd18d5e46c56fe8a43310b60309cfb0f34 (patch) | |
| tree | 92f45a474258789c2efd48c8086abee806c13a71 | |
| parent | Merge pull request #6100 from bunnei/arm-fix (diff) | |
| parent | gl_device: unblock async shaders on other Unix systems (diff) | |
| download | yuzu-b83eb4dd18d5e46c56fe8a43310b60309cfb0f34.tar.gz yuzu-b83eb4dd18d5e46c56fe8a43310b60309cfb0f34.tar.xz yuzu-b83eb4dd18d5e46c56fe8a43310b60309cfb0f34.zip | |
Merge pull request #6108 from jbeich/freebsd-async-shaders
gl_device: unblock async shaders on other Unix systems
| -rw-r--r-- | src/video_core/renderer_opengl/gl_device.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/renderer_opengl/gl_device.cpp b/src/video_core/renderer_opengl/gl_device.cpp index ba59414a7..5776fccdc 100644 --- a/src/video_core/renderer_opengl/gl_device.cpp +++ b/src/video_core/renderer_opengl/gl_device.cpp | |||
| @@ -210,7 +210,7 @@ Device::Device() { | |||
| 210 | const bool is_amd = vendor == "ATI Technologies Inc."; | 210 | const bool is_amd = vendor == "ATI Technologies Inc."; |
| 211 | const bool is_intel = vendor == "Intel"; | 211 | const bool is_intel = vendor == "Intel"; |
| 212 | 212 | ||
| 213 | #ifdef __linux__ | 213 | #ifdef __unix__ |
| 214 | const bool is_linux = true; | 214 | const bool is_linux = true; |
| 215 | #else | 215 | #else |
| 216 | const bool is_linux = false; | 216 | const bool is_linux = false; |