converted Console.WriteLine("Char not found!") to DebugUtil.SendError

This commit is contained in:
ralfkronemeyer_cp 2008-06-26 20:19:53 +00:00
parent c67d3bc418
commit b87afdc6cb

View file

@ -2,6 +2,7 @@
using System.Collections;
using System.Collections.Generic;
using System.Text;
using Cosmos.Kernel;
namespace Cosmos.Hardware
{
@ -286,7 +287,7 @@ namespace Cosmos.Hardware
return true;
}
}
Console.WriteLine("Char not found!");
DebugUtil.SendError("Keyboard", "Char not found: Scancode = " + aScanCode.ToHex());
aValue = '\0';
return false;
}