Minor correction

This commit is contained in:
Adrien Bourmault 2019-11-28 13:11:16 +01:00
parent 08febb24ea
commit 7efa1f8288
1 changed files with 2 additions and 1 deletions

View File

@ -68,9 +68,10 @@ static void IoDoToneNoIdt(uint tone, uint time)
void IoDoBeep(void)
{
if (KeIdtIsInitialized)
if (KeIdtIsInitialized) {
IoDoTone(1000, 100);
IoQuietSpeaker();
}
}
void IoDoBeepNoIdt(void)