dotnet format

This commit is contained in:
Marco Carvalho 2024-05-06 14:14:37 -03:00
parent 9dd8d71ee6
commit 5550b08697
2 changed files with 8 additions and 4 deletions

View file

@ -857,8 +857,10 @@ namespace ARMeilleure.Translation.PTC
Stopwatch sw = Stopwatch.StartNew();
foreach (var thread in threads) thread.Start();
foreach (var thread in threads) thread.Join();
foreach (var thread in threads)
thread.Start();
foreach (var thread in threads)
thread.Join();
threads.Clear();

View file

@ -395,8 +395,10 @@ namespace Ryujinx.Graphics.Gpu
{
Renderer.CreateSync(SyncNumber, strict);
foreach (var action in SyncActions) action.SyncPreAction(syncpoint);
foreach (var action in SyncpointActions) action.SyncPreAction(syncpoint);
foreach (var action in SyncActions)
action.SyncPreAction(syncpoint);
foreach (var action in SyncpointActions)
action.SyncPreAction(syncpoint);
SyncNumber++;