diff --git a/Demos/Guess/Kernel.cs b/Demos/Guess/Kernel.cs index ad4a87ce8..d75adf049 100644 --- a/Demos/Guess/Kernel.cs +++ b/Demos/Guess/Kernel.cs @@ -1,12 +1,7 @@ using System; -using Cosmos.Debug.Kernel; using Sys = Cosmos.System; -/* - * Beware Demo Kernels are not recompiled when its dependencies changes! - * To force recompilation right click on on the Cosmos icon of the demo solution and do "Build". - */ namespace Guess { public class GuessOS : Sys.Kernel @@ -20,7 +15,7 @@ namespace Guess mRandom = new Random(); mCount = 0; - mNumber = mRandom.Next(1, 100); + mNumber = mRandom.Next(1, 101); Console.Clear();