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);