From 4ab777b429b3a659be33e8a21b6a446c1cad2780 Mon Sep 17 00:00:00 2001 From: Megamouse Date: Sat, 13 Oct 2018 12:03:50 +0200 Subject: [PATCH] Add title to emulator message dialogs --- rpcs3/Emu/System.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/rpcs3/Emu/System.cpp b/rpcs3/Emu/System.cpp index e8d3d4f745..afdc7d2159 100644 --- a/rpcs3/Emu/System.cpp +++ b/rpcs3/Emu/System.cpp @@ -356,7 +356,7 @@ void Emulator::Init() Emu.CallAfter([=]() { - dlg->Create(+g_progr); + dlg->Create(+g_progr, +g_progr); }); u64 ftotal = 0; @@ -792,6 +792,8 @@ void Emulator::Load(bool add_only) } } + g_progr = "Compiling PPU modules"; + for (std::size_t i = 0; i < file_queue.size(); i++) { const auto& path = file_queue[i].first;