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
1 changed files with 1 additions and 1 deletions

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 )