diff options
author | GPUCode <geoster3d@gmail.com> | 2023-06-05 18:04:22 +0200 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2023-06-28 03:00:09 +0200 |
commit | 1522b956583aab463bd1576652d1794fe989437d (patch) | |
tree | af44951eda971e3513a06537590681b3aa91a6b2 /src/video_core | |
parent | renderer_vulkan: Respect viewport limit (diff) | |
download | yuzu-1522b956583aab463bd1576652d1794fe989437d.tar yuzu-1522b956583aab463bd1576652d1794fe989437d.tar.gz yuzu-1522b956583aab463bd1576652d1794fe989437d.tar.bz2 yuzu-1522b956583aab463bd1576652d1794fe989437d.tar.lz yuzu-1522b956583aab463bd1576652d1794fe989437d.tar.xz yuzu-1522b956583aab463bd1576652d1794fe989437d.tar.zst yuzu-1522b956583aab463bd1576652d1794fe989437d.zip |
Diffstat (limited to 'src/video_core')
-rw-r--r-- | src/video_core/vulkan_common/vulkan_device.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/vulkan_common/vulkan_device.h b/src/video_core/vulkan_common/vulkan_device.h index 8a05a4fab..13ca24ef5 100644 --- a/src/video_core/vulkan_common/vulkan_device.h +++ b/src/video_core/vulkan_common/vulkan_device.h @@ -518,7 +518,7 @@ public: if (extensions.spirv_1_4) { return 0x00010400U; } - return 0x00010000U; + return 0x00010300U; } /// Returns true when a known debugging tool is attached. |