Guess demo fixes.

This commit is contained in:
José Pedro 2018-12-06 21:57:49 +00:00
parent 5cf4dbd990
commit 04dd4e26ef
No known key found for this signature in database
GPG key ID: B8247B9301707B83

View file

@ -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();