From ede816387fa1f01c25de7b47e87a625c0f682014 Mon Sep 17 00:00:00 2001 From: Nekotekina Date: Tue, 27 Aug 2019 13:57:27 +0300 Subject: [PATCH] Fix SPRX loader crash --- rpcs3/Emu/System.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/rpcs3/Emu/System.cpp b/rpcs3/Emu/System.cpp index ae95b7f3b7..73821e8286 100644 --- a/rpcs3/Emu/System.cpp +++ b/rpcs3/Emu/System.cpp @@ -545,7 +545,8 @@ std::string Emulator::PPUCache() const if (!_main || _main->cache.empty()) { - fmt::throw_exception("PPU Cache location not initialized."); + LOG_WARNING(PPU, "PPU Cache location not initialized."); + return {}; } return _main->cache;