From 4ac1e2d8f56f0e02113b78f915ea7c3e7f863caa Mon Sep 17 00:00:00 2001 From: Nekotekina Date: Wed, 21 Aug 2019 22:43:54 +0300 Subject: [PATCH] Use g_fxo for vfs_manager --- rpcs3/Emu/VFS.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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);