Qt: Purge unused {start,stop}dumpingAudio
This commit is contained in:
parent
e91ae5f1b9
commit
5cbb6b6163
|
@ -1475,28 +1475,6 @@ void EmuThread::setAudioOutputMuted(bool muted)
|
||||||
System::UpdateVolume();
|
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()
|
void EmuThread::singleStepCPU()
|
||||||
{
|
{
|
||||||
if (!isCurrentThread())
|
if (!isCurrentThread())
|
||||||
|
|
|
@ -194,8 +194,6 @@ public Q_SLOTS:
|
||||||
void undoLoadState();
|
void undoLoadState();
|
||||||
void setAudioOutputVolume(int volume, int fast_forward_volume);
|
void setAudioOutputVolume(int volume, int fast_forward_volume);
|
||||||
void setAudioOutputMuted(bool muted);
|
void setAudioOutputMuted(bool muted);
|
||||||
void startDumpingAudio();
|
|
||||||
void stopDumpingAudio();
|
|
||||||
void singleStepCPU();
|
void singleStepCPU();
|
||||||
void dumpRAM(const QString& filename);
|
void dumpRAM(const QString& filename);
|
||||||
void dumpVRAM(const QString& filename);
|
void dumpVRAM(const QString& filename);
|
||||||
|
|
Loading…
Reference in New Issue