From 8d86dc6f6a6cda0d378894311a8d000a3df2a5a0 Mon Sep 17 00:00:00 2001 From: Jonas 'Sortie' Termansen Date: Mon, 22 Aug 2011 11:12:29 +0200 Subject: [PATCH] Changing the sound frequency no longer prints to the terminal. --- sortix/sound.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/sortix/sound.cpp b/sortix/sound.cpp index 70bcdd5c..3a75ae21 100644 --- a/sortix/sound.cpp +++ b/sortix/sound.cpp @@ -38,8 +38,6 @@ namespace Sortix void Play(nat Frequency) { - Log::PrintF("Playing frequency %u\n", Frequency); - //Set the PIT to the desired frequency uint32_t Div = 1193180 / Frequency; CPU::OutPortB(0x43, 0xB6);