diff --git a/rpcs3/Emu/VFS.cpp b/rpcs3/Emu/VFS.cpp index d4114ca36f..c83ce16269 100644 --- a/rpcs3/Emu/VFS.cpp +++ b/rpcs3/Emu/VFS.cpp @@ -25,7 +25,7 @@ struct vfs_manager bool vfs::mount(std::string_view vpath, std::string_view path) { - const auto table = fxm::get_always(); + const auto table = g_fxo->get(); std::lock_guard lock(table->mutex); @@ -98,7 +98,7 @@ bool vfs::mount(std::string_view vpath, std::string_view path) std::string vfs::get(std::string_view vpath, std::vector* out_dir) { - const auto table = fxm::get_always(); + const auto table = g_fxo->get(); reader_lock lock(table->mutex);