diff --git a/src/duckstation-qt/qthost.cpp b/src/duckstation-qt/qthost.cpp index 87847ba94..8004039b1 100644 --- a/src/duckstation-qt/qthost.cpp +++ b/src/duckstation-qt/qthost.cpp @@ -1475,28 +1475,6 @@ void EmuThread::setAudioOutputMuted(bool muted) System::UpdateVolume(); } -void EmuThread::startDumpingAudio() -{ - if (!isCurrentThread()) - { - QMetaObject::invokeMethod(this, "startDumpingAudio", Qt::QueuedConnection); - return; - } - - // System::StartDumpingAudio(); -} - -void EmuThread::stopDumpingAudio() -{ - if (!isCurrentThread()) - { - QMetaObject::invokeMethod(this, "stopDumpingAudio", Qt::QueuedConnection); - return; - } - - // System::StopDumpingAudio(); -} - void EmuThread::singleStepCPU() { if (!isCurrentThread()) diff --git a/src/duckstation-qt/qthost.h b/src/duckstation-qt/qthost.h index fbd4f132c..b0e959c9c 100644 --- a/src/duckstation-qt/qthost.h +++ b/src/duckstation-qt/qthost.h @@ -194,8 +194,6 @@ public Q_SLOTS: void undoLoadState(); void setAudioOutputVolume(int volume, int fast_forward_volume); void setAudioOutputMuted(bool muted); - void startDumpingAudio(); - void stopDumpingAudio(); void singleStepCPU(); void dumpRAM(const QString& filename); void dumpVRAM(const QString& filename);