From c1921c982b38ae82ce23b026f037a5f2133ed45e Mon Sep 17 00:00:00 2001 From: Yohoki Date: Mon, 6 May 2024 05:53:57 -0500 Subject: [PATCH] Removed Logging, Clean Comments --- src/Ryujinx.Horizon/Bcat/Ipc/ServiceCreator/BcatService.cs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/Ryujinx.Horizon/Bcat/Ipc/ServiceCreator/BcatService.cs b/src/Ryujinx.Horizon/Bcat/Ipc/ServiceCreator/BcatService.cs index a17365c92..5a7887946 100644 --- a/src/Ryujinx.Horizon/Bcat/Ipc/ServiceCreator/BcatService.cs +++ b/src/Ryujinx.Horizon/Bcat/Ipc/ServiceCreator/BcatService.cs @@ -1,4 +1,3 @@ -using Ryujinx.Common.Logging; using Ryujinx.Horizon.Bcat.Types; using Ryujinx.Horizon.Common; using Ryujinx.Horizon.Sdk.Bcat; @@ -21,8 +20,7 @@ namespace Ryujinx.Horizon.Bcat.Ipc [CmifCommand(10101)] public Result RequestSyncDeliveryCacheWithDirectoryName(out IDeliveryCacheProgressService deliveryCacheProgressService) { - // Temporary fix for Endless Ocean Luminous (010067B017588000). - // Just pretend the network request failed and pretend that everything is fine. + // Just have the network request fail and pretend that everything is fine. deliveryCacheProgressService = new DeliveryCacheProgressService(); return BcatResult.InternetRequestDenied;