From 9a2338a5ca4c063f99ef47e11ef92cee3d573489 Mon Sep 17 00:00:00 2001 From: Nekotekina Date: Sun, 25 Aug 2019 03:20:06 +0300 Subject: [PATCH] Use g_fxo for fs_aio_manager (dummy) --- rpcs3/Emu/Cell/Modules/cellFs.cpp | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/rpcs3/Emu/Cell/Modules/cellFs.cpp b/rpcs3/Emu/Cell/Modules/cellFs.cpp index 590b2dfc2d..cba1bd07dc 100644 --- a/rpcs3/Emu/Cell/Modules/cellFs.cpp +++ b/rpcs3/Emu/Cell/Modules/cellFs.cpp @@ -922,8 +922,6 @@ s32 cellFsAioInit(vm::cptr mount_point) cellFs.warning("cellFsAioInit(mount_point=%s)", mount_point); // TODO: create AIO thread (if not exists) for specified mount point - const auto m = fxm::make(); - fmt::throw_exception("cellFsAio disabled, use LLE."); return CELL_OK; @@ -946,7 +944,7 @@ s32 cellFsAioRead(vm::ptr aio, vm::ptr id, fs_aio_cb_t func) // TODO: detect mount point and send AIO request to the AIO thread of this mount point - const auto m = fxm::get(); + const auto m = g_fxo->get(); if (!m) { @@ -970,7 +968,7 @@ s32 cellFsAioWrite(vm::ptr aio, vm::ptr id, fs_aio_cb_t func) // TODO: detect mount point and send AIO request to the AIO thread of this mount point - const auto m = fxm::get(); + const auto m = g_fxo->get(); if (!m) {