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;