mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2026-03-24 07:31:08 +00:00
misc: chore: Use explicit types in HLE project
This commit is contained in:
@@ -127,7 +127,7 @@ namespace Ryujinx.HLE.HOS.Kernel.Threading
|
||||
public KThread ScheduledThreadsElementAtOrDefault(int core, int index)
|
||||
{
|
||||
int currentIndex = 0;
|
||||
foreach (var scheduledThread in ScheduledThreads(core))
|
||||
foreach (KThread scheduledThread in ScheduledThreads(core))
|
||||
{
|
||||
if (currentIndex == index)
|
||||
{
|
||||
@@ -144,7 +144,7 @@ namespace Ryujinx.HLE.HOS.Kernel.Threading
|
||||
|
||||
public KThread ScheduledThreadsWithDynamicPriorityFirstOrDefault(int core, int dynamicPriority)
|
||||
{
|
||||
foreach (var scheduledThread in ScheduledThreads(core))
|
||||
foreach (KThread scheduledThread in ScheduledThreads(core))
|
||||
{
|
||||
if (scheduledThread.DynamicPriority == dynamicPriority)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user