summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2021-03-25 00:52:27 +0100
committerGitHub <noreply@github.com>2021-03-25 00:52:27 +0100
commitb83eb4dd18d5e46c56fe8a43310b60309cfb0f34 (patch)
tree92f45a474258789c2efd48c8086abee806c13a71
parentMerge pull request #6100 from bunnei/arm-fix (diff)
parentgl_device: unblock async shaders on other Unix systems (diff)
downloadyuzu-b83eb4dd18d5e46c56fe8a43310b60309cfb0f34.tar
yuzu-b83eb4dd18d5e46c56fe8a43310b60309cfb0f34.tar.gz
yuzu-b83eb4dd18d5e46c56fe8a43310b60309cfb0f34.tar.bz2
yuzu-b83eb4dd18d5e46c56fe8a43310b60309cfb0f34.tar.lz
yuzu-b83eb4dd18d5e46c56fe8a43310b60309cfb0f34.tar.xz
yuzu-b83eb4dd18d5e46c56fe8a43310b60309cfb0f34.tar.zst
yuzu-b83eb4dd18d5e46c56fe8a43310b60309cfb0f34.zip
-rw-r--r--src/video_core/renderer_opengl/gl_device.cpp2
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() {
const bool is_amd = vendor == "ATI Technologies Inc.";
const bool is_intel = vendor == "Intel";
-#ifdef __linux__
+#ifdef __unix__
const bool is_linux = true;
#else
const bool is_linux = false;