mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-27 22:12:25 +00:00
converted Console.WriteLine("Char not found!") to DebugUtil.SendError
This commit is contained in:
parent
c67d3bc418
commit
b87afdc6cb
1 changed files with 2 additions and 1 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue