mirror of
				https://github.com/ryujinx-mirror/ryujinx.git
				synced 2025-11-04 08:18:58 -06:00 
			
		
		
		
	Replace "List.ForEach" for "foreach" (#6783)
* Replace "List.ForEach" for "foreach" * dotnet format * Update Ptc.cs * Update GpuContext.cs
This commit is contained in:
		@@ -857,8 +857,14 @@ namespace ARMeilleure.Translation.PTC
 | 
			
		||||
 | 
			
		||||
            Stopwatch sw = Stopwatch.StartNew();
 | 
			
		||||
 | 
			
		||||
            threads.ForEach((thread) => thread.Start());
 | 
			
		||||
            threads.ForEach((thread) => thread.Join());
 | 
			
		||||
            foreach (var thread in threads)
 | 
			
		||||
            {
 | 
			
		||||
                thread.Start();
 | 
			
		||||
            }
 | 
			
		||||
            foreach (var thread in threads)
 | 
			
		||||
            {
 | 
			
		||||
                thread.Join();
 | 
			
		||||
            }
 | 
			
		||||
 | 
			
		||||
            threads.Clear();
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -395,8 +395,14 @@ namespace Ryujinx.Graphics.Gpu
 | 
			
		||||
            {
 | 
			
		||||
                Renderer.CreateSync(SyncNumber, strict);
 | 
			
		||||
 | 
			
		||||
                SyncActions.ForEach(action => action.SyncPreAction(syncpoint));
 | 
			
		||||
                SyncpointActions.ForEach(action => action.SyncPreAction(syncpoint));
 | 
			
		||||
                foreach (var action in SyncActions)
 | 
			
		||||
                {
 | 
			
		||||
                    action.SyncPreAction(syncpoint);
 | 
			
		||||
                }
 | 
			
		||||
                foreach (var action in SyncpointActions)
 | 
			
		||||
                {
 | 
			
		||||
                    action.SyncPreAction(syncpoint);
 | 
			
		||||
                }
 | 
			
		||||
 | 
			
		||||
                SyncNumber++;
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user