From 52ec0acd0c53ef5e498c548980dfc8be04d2f308 Mon Sep 17 00:00:00 2001 From: Triang3l Date: Tue, 1 Feb 2022 22:29:14 +0300 Subject: [PATCH] [App] Add text saying that post-processing is vendor-independent --- src/xenia/app/emulator_window.cc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/xenia/app/emulator_window.cc b/src/xenia/app/emulator_window.cc index c8374edd4..a4dbb8786 100644 --- a/src/xenia/app/emulator_window.cc +++ b/src/xenia/app/emulator_window.cc @@ -271,6 +271,10 @@ void EmulatorWindow::DisplayConfigDialog::OnDraw(ImGuiIO& io) { // Even if the close button has been pressed, still paint everything not to // have one frame with an empty window. + // Prevent user confusion which has been reported multiple times. + ImGui::TextUnformatted("All effects can be used on GPUs of any brand."); + ImGui::Spacing(); + gpu::CommandProcessor* command_processor = graphics_system->command_processor(); if (command_processor) {