diff options
author | toast2903 <22451773+lat9nq@users.noreply.github.com> | 2023-06-18 23:29:27 -0400 |
---|---|---|
committer | lat9nq <22451773+lat9nq@users.noreply.github.com> | 2023-06-19 17:35:12 -0400 |
commit | 78ff2862f6a0785247d3aa64bdc210b545e4d82d (patch) | |
tree | 986a6d63d7eed621781d54c38b100236eae4126b /src | |
parent | 197e13d93d6740cda589d88804262d6bdd176a74 (diff) |
vulkan_device: Remove brace initializer
Co-authored-by: Tobias <thm.frey@gmail.com>
Diffstat (limited to 'src')
-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 e54828088..0b634a876 100644 --- a/src/video_core/vulkan_common/vulkan_device.h +++ b/src/video_core/vulkan_common/vulkan_device.h @@ -598,7 +598,7 @@ public: return true; } } - return {}; + return false; } private: |