mirror of
https://github.com/danbulant/Cosmos
synced 2026-06-03 06:40:23 +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;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
|
using Cosmos.Kernel;
|
||||||
|
|
||||||
namespace Cosmos.Hardware
|
namespace Cosmos.Hardware
|
||||||
{
|
{
|
||||||
|
|
@ -286,7 +287,7 @@ namespace Cosmos.Hardware
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Console.WriteLine("Char not found!");
|
DebugUtil.SendError("Keyboard", "Char not found: Scancode = " + aScanCode.ToHex());
|
||||||
aValue = '\0';
|
aValue = '\0';
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue