Commit d5768238 authored by Bryant's avatar Bryant

Disable text output from GAudioOutput.

All it does is clutter the terminal and it's not doing anything anyways.
parent 2a692725
......@@ -329,9 +329,10 @@ void GAudioOutput::beep()
{
if (!muted)
{
// TODO: Re-enable audio beeps
// Use QFile to transform path for all OS
QFile f(QCoreApplication::applicationDirPath() + QString("/files/audio/alert.wav"));
qDebug() << "FILE:" << f.fileName();
//QFile f(QCoreApplication::applicationDirPath() + QString("/files/audio/alert.wav"));
//qDebug() << "FILE:" << f.fileName();
//m_media->setCurrentSource(Phonon::MediaSource(f.fileName().toStdString().c_str()));
//m_media->play();
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment