From c43a126f6210373db9b249eae9d80ca47d647705 Mon Sep 17 00:00:00 2001 From: Nekotekina Date: Thu, 22 Aug 2019 02:46:21 +0300 Subject: [PATCH] Fix VFS initialization --- rpcs3/Emu/VFS.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/rpcs3/Emu/VFS.cpp b/rpcs3/Emu/VFS.cpp index c83ce16269..b37f19f215 100644 --- a/rpcs3/Emu/VFS.cpp +++ b/rpcs3/Emu/VFS.cpp @@ -25,6 +25,12 @@ struct vfs_manager bool vfs::mount(std::string_view vpath, std::string_view path) { + if (!g_fxo->get()) + { + // Init (TODO) + g_fxo->init(); + } + const auto table = g_fxo->get(); std::lock_guard lock(table->mutex);