dotnet format
This commit is contained in:
parent
9dd8d71ee6
commit
5550b08697
2 changed files with 8 additions and 4 deletions
|
@ -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();
|
||||
|
||||
|
|
|
@ -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++;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue