Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/doitsujin/dxvk.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBlisto91 <47954800+Blisto91@users.noreply.github.com>2023-07-21 00:18:20 +0300
committerPhilip Rebohle <25567304+doitsujin@users.noreply.github.com>2023-07-23 20:59:31 +0300
commit13440a5d8944f0ae38fae3f131c4483de9162e0a (patch)
tree4e9a317c67024910d4a1ac6deb2ded6f502b21d3
parent1daae75048a8e5fcecf6baf88e5de3d889b3b018 (diff)
[dxvk] Clarify Vulkan 1.3 driver requirement in log
-rw-r--r--src/dxvk/dxvk_instance.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/dxvk/dxvk_instance.cpp b/src/dxvk/dxvk_instance.cpp
index 9a29d2d1..b32a3ea0 100644
--- a/src/dxvk/dxvk_instance.cpp
+++ b/src/dxvk/dxvk_instance.cpp
@@ -288,7 +288,8 @@ namespace dxvk {
if (result.empty()) {
Logger::warn("DXVK: No adapters found. Please check your "
- "device filter settings and Vulkan setup.");
+ "device filter settings and Vulkan setup. "
+ "A Vulkan 1.3 capable driver is required.");
} else if (numDGPU == 1 && numIGPU == 1) {
result[1]->linkToDGPU(result[0]);
}