From 334327df67acec9f7e53313b1719479d913ebb6e Mon Sep 17 00:00:00 2001 From: kd-11 Date: Wed, 16 Aug 2017 15:19:32 +0300 Subject: [PATCH] rsx: Add a success message on program compile completion - Should help users wondering if rpcs3 'froze' during shader compile --- rpcs3/Emu/RSX/Common/ProgramStateCache.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/rpcs3/Emu/RSX/Common/ProgramStateCache.h b/rpcs3/Emu/RSX/Common/ProgramStateCache.h index 60f754b7d935..45eccb38a234 100644 --- a/rpcs3/Emu/RSX/Common/ProgramStateCache.h +++ b/rpcs3/Emu/RSX/Common/ProgramStateCache.h @@ -211,6 +211,8 @@ class program_state_cache m_storage[key] = backend_traits::build_pipeline(vertex_program, fragment_program, pipelineProperties, std::forward(args)...); m_cache_miss_flag = true; + + LOG_SUCCESS(RSX, "New program compiled successfully"); return m_storage[key]; }