We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2c028a4 commit 115325fCopy full SHA for 115325f
Source/RunActivity/Viewer3D/Processes/HostProcess.cs
@@ -64,7 +64,7 @@ public class HostProcess
64
65
private const int DoHostTime = 10000;
66
private const int SleepTime = 100; // must be short enough for timely termination
67
- private const uint DoHostIntervall = DoHostTime / SleepTime;
+ private const uint DoHostInterval = DoHostTime / SleepTime;
68
69
public HostProcess(Game game)
70
{
@@ -99,7 +99,7 @@ void HostThread()
99
Thread.Sleep(SleepTime);
100
if (State.Terminated)
101
break;
102
- if (sleepCount % DoHostIntervall == 0)
+ if (sleepCount % DoHostInterval == 0)
103
104
if (!DoHost())
105
return;
0 commit comments