Skip to content

Commit

Permalink
remove notice for unusual core counts (#531)
Browse files Browse the repository at this point in the history
  • Loading branch information
LotP1 authored Jan 17, 2025
1 parent 1018c9d commit 5aa071c
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/Ryujinx.HLE/HOS/Kernel/Process/KProcessCapabilities.cs
Original file line number Diff line number Diff line change
Expand Up @@ -176,9 +176,7 @@ private Result ParseCapability(uint cap, ref int mask0, ref int mask1, KPageTabl
AllowedCpuCoresMask = GetMaskFromMinMax(lowestCpuCore, highestCpuCore);
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 (discord.gg/ryujinx)!");
else if (isApplication)
if (isApplication)
Ryujinx.Common.Logging.Logger.Info?.Print(Ryujinx.Common.Logging.LogClass.Application, $"Application requested cores with index range {lowestCpuCore} to {highestCpuCore}");

break;
Expand Down

0 comments on commit 5aa071c

Please sign in to comment.