1
0
Fork 0
mirror of https://gitlab.com/sortix/sortix.git synced 2023-02-13 20:55:38 -05:00

Fix typo in PS/2 error string.

Discovered by Alexandros Alexandrou.
This commit is contained in:
Jonas 'Sortie' Termansen 2016-02-13 19:28:59 +01:00
parent b15d30ea0c
commit 16c5738a20

View file

@ -268,7 +268,7 @@ void Init(PS2Device* keyboard, PS2Device* mouse)
if ( byte != 0x55 )
{
Log::PrintF("[PS/2 controller] Self-test failure resulted in "
"0x%02X instead of 0xAA\n", byte);
"0x%02X instead of 0x55\n", byte);
return;
}
if ( dual )