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,10 +68,11 @@ static void IoDoToneNoIdt(uint tone, uint time)
void IoDoBeep(void) void IoDoBeep(void)
{ {
if (KeIdtIsInitialized) if (KeIdtIsInitialized) {
IoDoTone(1000, 100); IoDoTone(1000, 100);
IoQuietSpeaker(); IoQuietSpeaker();
} }
}
void IoDoBeepNoIdt(void) void IoDoBeepNoIdt(void)
{ {