From 64aff7f019af148e7455ee29458c342511a95321 Mon Sep 17 00:00:00 2001 From: kd-11 Date: Tue, 27 Aug 2019 17:45:51 +0300 Subject: [PATCH] emucore: Initialize fxo on loading RSX captures - Fixes crash on capture replay --- rpcs3/Emu/System.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/rpcs3/Emu/System.cpp b/rpcs3/Emu/System.cpp index 73821e8286..2ca98b9072 100644 --- a/rpcs3/Emu/System.cpp +++ b/rpcs3/Emu/System.cpp @@ -579,6 +579,7 @@ bool Emulator::BootRsxCapture(const std::string& path) g_cfg.video.disable_on_disk_shader_cache.set(true); vm::init(); + g_fxo->init(); // PS3 'executable' m_state = system_state::ready;