You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// real cores wouldn't do something like this, but this just keeps speed reasonable
// if all throttles are off
Thread.Sleep(5);
returntrue;
}
I'm thinking it could be helpful for S–N ratio in profiling if it did something else, namely return instantly. Other options are Thread.Sleep(0) or a busy loop.
The text was updated successfully, but these errors were encountered:
I'm not sure how much use that would have for profiling because most other things aren't setup anyway, like controls are just NullController, video output is just an empty screen, no audio, no memory domains etc.
Currently, it sleeps for 5 ms:
BizHawk/src/BizHawk.Emulation.Common/Base Implementations/NullEmulator.cs
Lines 34 to 40 in a39689d
I'm thinking it could be helpful for S–N ratio in profiling if it did something else, namely return instantly. Other options are
Thread.Sleep(0)
or a busy loop.The text was updated successfully, but these errors were encountered: