Skip to content

Commit 115325f

Browse files
committed
Fix typo in variable name.
1 parent 2c028a4 commit 115325f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Source/RunActivity/Viewer3D/Processes/HostProcess.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ public class HostProcess
6464

6565
private const int DoHostTime = 10000;
6666
private const int SleepTime = 100; // must be short enough for timely termination
67-
private const uint DoHostIntervall = DoHostTime / SleepTime;
67+
private const uint DoHostInterval = DoHostTime / SleepTime;
6868

6969
public HostProcess(Game game)
7070
{
@@ -99,7 +99,7 @@ void HostThread()
9999
Thread.Sleep(SleepTime);
100100
if (State.Terminated)
101101
break;
102-
if (sleepCount % DoHostIntervall == 0)
102+
if (sleepCount % DoHostInterval == 0)
103103
{
104104
if (!DoHost())
105105
return;

0 commit comments

Comments
 (0)