mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-04 15:45:25 +00:00
Make bash-2.05b build with minimal changes.
This is really neat. :^)
This commit is contained in:
@@ -50,7 +50,7 @@ void Keyboard::emit(byte ch)
|
||||
void Keyboard::handleIRQ()
|
||||
{
|
||||
while (IO::in8(0x64) & 1) {
|
||||
BYTE ch = IO::in8(0x60);
|
||||
byte ch = IO::in8(0x60);
|
||||
switch (ch) {
|
||||
case 0x38: m_modifiers |= Mod_Alt; break;
|
||||
case 0xB8: m_modifiers &= ~Mod_Alt; break;
|
||||
|
||||
Reference in New Issue
Block a user