Skip to content

Commit 0bf162a

Browse files
committed
fix whitespace
1 parent fd8d370 commit 0bf162a

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

src/BizHawk.Client.Common/lua/LuaLibraries.cs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -455,9 +455,9 @@ public static void Print(params object[] outputs)
455455
private void FrameAdvance()
456456
{
457457
if (ProhibitedApis.HasFlag(ApiGroup.YIELDING))
458-
{
459-
throw new InvalidOperationException("emu.frameadvance() is not allowed during any callbacks");
460-
}
458+
{
459+
throw new InvalidOperationException("emu.frameadvance() is not allowed during any callbacks");
460+
}
461461

462462
FrameAdvanceRequested = true;
463463
CurrentFile.Thread.Yield();
@@ -466,9 +466,9 @@ private void FrameAdvance()
466466
private void EmuYield()
467467
{
468468
if (ProhibitedApis.HasFlag(ApiGroup.YIELDING))
469-
{
470-
throw new InvalidOperationException("emu.yield() is not allowed during any callbacks");
471-
}
469+
{
470+
throw new InvalidOperationException("emu.yield() is not allowed during any callbacks");
471+
}
472472

473473
CurrentFile.Thread.Yield();
474474
}

0 commit comments

Comments
 (0)