From 0bfec59af86e9597706c5ee024de14034ad22574 Mon Sep 17 00:00:00 2001 From: Megamouse Date: Tue, 15 Dec 2020 22:29:29 +0100 Subject: [PATCH] Fix stop during shader compilation --- rpcs3/Emu/RSX/rsx_cache.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/rpcs3/Emu/RSX/rsx_cache.h b/rpcs3/Emu/RSX/rsx_cache.h index 9060cc1e9b..df25937f00 100644 --- a/rpcs3/Emu/RSX/rsx_cache.h +++ b/rpcs3/Emu/RSX/rsx_cache.h @@ -544,7 +544,10 @@ namespace rsx } } - ensure(processed == entry_count); + if (!Emu.IsStopped()) + { + ensure(processed == entry_count); + } } public: