From 37ac497c2ea8953aaf1ac1aa4d778e513d458658 Mon Sep 17 00:00:00 2001 From: LotP1 Date: Thu, 9 Jan 2025 17:36:32 +0100 Subject: [PATCH] include discord invite link --- src/Ryujinx.HLE/HOS/Kernel/Process/KProcessCapabilities.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Ryujinx.HLE/HOS/Kernel/Process/KProcessCapabilities.cs b/src/Ryujinx.HLE/HOS/Kernel/Process/KProcessCapabilities.cs index 63a21e930..5c9f4f100 100644 --- a/src/Ryujinx.HLE/HOS/Kernel/Process/KProcessCapabilities.cs +++ b/src/Ryujinx.HLE/HOS/Kernel/Process/KProcessCapabilities.cs @@ -177,7 +177,7 @@ namespace Ryujinx.HLE.HOS.Kernel.Process AllowedThreadPriosMask = GetMaskFromMinMax(lowestThreadPrio, highestThreadPrio); if (isApplication && lowestCpuCore == 0 && highestCpuCore != 2) - Ryujinx.Common.Logging.Logger.Error?.Print(Ryujinx.Common.Logging.LogClass.Application, $"Application requested cores with index range {lowestCpuCore} to {highestCpuCore}! Report this to @LotP on the Ryujinx/Ryubing discord server!"); + Ryujinx.Common.Logging.Logger.Error?.Print(Ryujinx.Common.Logging.LogClass.Application, $"Application requested cores with index range {lowestCpuCore} to {highestCpuCore}! Report this to @LotP on the Ryujinx/Ryubing discord server (discord.gg/ryujinx)!"); else if (isApplication) Ryujinx.Common.Logging.Logger.Info?.Print(Ryujinx.Common.Logging.LogClass.Application, $"Application requested cores with index range {lowestCpuCore} to {highestCpuCore}");