From 107129f95a9766ace412581101506c9348a2e8f0 Mon Sep 17 00:00:00 2001 From: Megamouse Date: Thu, 30 Jul 2020 23:37:39 +0200 Subject: [PATCH] Fix missing GPU in game window title --- rpcs3/Emu/System.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/rpcs3/Emu/System.cpp b/rpcs3/Emu/System.cpp index 3f8f36d24e..b93d4b4d5a 100644 --- a/rpcs3/Emu/System.cpp +++ b/rpcs3/Emu/System.cpp @@ -1815,6 +1815,7 @@ std::string Emulator::GetFormattedTitle(double fps) const title_data.title = GetTitle(); title_data.title_id = GetTitleID(); title_data.renderer = g_cfg.video.renderer.to_string(); + title_data.vulkan_adapter = g_cfg.video.vk.adapter.to_string(); title_data.fps = fps; return rpcs3::get_formatted_title(title_data);