JoshuaWierenga / EfiSharp

An Attempt at building at least some of C# corelib for EFI applications. Inspired by https://github.com/MichalStrehovsky/zerosharp to see if this possible.
MIT License
18 stars 4 forks source link

Console.ReadKey fails to read in lower case a #4

Closed JoshuaWierenga closed 3 years ago

JoshuaWierenga commented 3 years ago

Pressing lower case a during a ReadKey returns 0 as the ConsoleKey, the key code is however correctly identified as 97. This also affects the cursor test since it relies on ReadKey but this can be fixed by using an upper case a.

image