File tree Expand file tree Collapse file tree
src/BizHawk.Client.Common/lua Expand file tree Collapse file tree Original file line number Diff line number Diff 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 }
You can’t perform that action at this time.
0 commit comments