Replace spaces with tabs

This commit is contained in:
Meerkov 2016-09-28 21:16:24 -07:00
parent 91c5eda526
commit 4e99ed17ae
1 changed files with 12 additions and 12 deletions

View File

@ -1337,11 +1337,11 @@ namespace BizHawk.Client.EmuHawk
private bool _runloopFrameProgress; private bool _runloopFrameProgress;
private long _frameAdvanceTimestamp; private long _frameAdvanceTimestamp;
private long _frameRewindTimestamp; private long _frameRewindTimestamp;
private double _runloopLastFps; private double _runloopLastFps;
private bool _runloopFrameadvance; private bool _runloopFrameadvance;
private double _runloopUpdatesPerSecond = 16.0; private double _runloopUpdatesPerSecond = 16.0;
private double _runloopFpsSmoothing = 8.0; private double _runloopFpsSmoothing = 8.0;
private long _runloopSecond; private long _runloopSecond;
private bool _runloopLastFf; private bool _runloopLastFf;
private bool _inResizeLoop; private bool _inResizeLoop;
@ -2771,17 +2771,17 @@ namespace BizHawk.Client.EmuHawk
_runloopLastFps+= _runloopFpsSmoothing; _runloopLastFps+= _runloopFpsSmoothing;
if ((currentTimestamp - _runloopSecond) * _runloopUpdatesPerSecond >= Stopwatch.Frequency) if ((currentTimestamp - _runloopSecond) * _runloopUpdatesPerSecond >= Stopwatch.Frequency)
{ {
_runloopLastFps = Stopwatch.Frequency * (_runloopLastFps / (Stopwatch.Frequency + (currentTimestamp - _runloopSecond) * _runloopFpsSmoothing)); _runloopLastFps = Stopwatch.Frequency * (_runloopLastFps / (Stopwatch.Frequency + (currentTimestamp - _runloopSecond) * _runloopFpsSmoothing));
_runloopSecond = currentTimestamp; _runloopSecond = currentTimestamp;
updateFpsString = true; updateFpsString = true;
} }
if (updateFpsString) if (updateFpsString)
{ {
var fps_string = string.Format("{0:0} fps", _runloopLastFps); var fps_string = string.Format("{0:0} fps", _runloopLastFps);
if (isRewinding) if (isRewinding)
{ {
if (IsTurboing || isFastForwarding) if (IsTurboing || isFastForwarding)
{ {
@ -3528,7 +3528,7 @@ namespace BizHawk.Client.EmuHawk
} }
else else
{ {
//This shows up if there's a problem //This shows up if there's a problem
// TODO: put all these in a single method or something // TODO: put all these in a single method or something
//The ROM has been loaded by a recursive invocation of the LoadROM method. //The ROM has been loaded by a recursive invocation of the LoadROM method.