From d555241e514a0da91a41ffe49ebca9b1e5203925 Mon Sep 17 00:00:00 2001 From: Randomuser8219 Date: Mon, 15 Sep 2025 17:46:03 -0700 Subject: [PATCH] QT: Note Vulkan SDK requirement for validation tooltips (#3608) --- src/qt_gui/settings_dialog.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/qt_gui/settings_dialog.cpp b/src/qt_gui/settings_dialog.cpp index d05bf49f6..b551387ce 100644 --- a/src/qt_gui/settings_dialog.cpp +++ b/src/qt_gui/settings_dialog.cpp @@ -913,9 +913,9 @@ void SettingsDialog::updateNoteTextEdit(const QString& elementName) { if (elementName == "debugDump") { text = tr("Enable Debug Dumping:\\nSaves the import and export symbols and file header information of the currently running PS4 program to a directory."); } else if (elementName == "vkValidationCheckBox") { - text = tr("Enable Vulkan Validation Layers:\\nEnables a system that validates the state of the Vulkan renderer and logs information about its internal state.\\nThis will reduce performance and likely change the behavior of emulation."); + text = tr("Enable Vulkan Validation Layers:\\nEnables a system that validates the state of the Vulkan renderer and logs information about its internal state.\\nThis will reduce performance and likely change the behavior of emulation.\\nYou need the Vulkan SDK for this to work."); } else if (elementName == "vkSyncValidationCheckBox") { - text = tr("Enable Vulkan Synchronization Validation:\\nEnables a system that validates the timing of Vulkan rendering tasks.\\nThis will reduce performance and likely change the behavior of emulation."); + text = tr("Enable Vulkan Synchronization Validation:\\nEnables a system that validates the timing of Vulkan rendering tasks.\\nThis will reduce performance and likely change the behavior of emulation.\\nYou need the Vulkan SDK for this to work."); } else if (elementName == "rdocCheckBox") { text = tr("Enable RenderDoc Debugging:\\nIf enabled, the emulator will provide compatibility with Renderdoc to allow capture and analysis of the currently rendered frame."); } else if (elementName == "crashDiagnosticsCheckBox") {