Emulator Issues #1098
closedDSP Plugin Interface
0%
Description
What steps will reproduce the problem?
- Open Dolphin
- Run any game
- Open DSP configuration
What is the expected output? What do you see instead?
Plugins repeats 3 times.
What version of the product are you using? On what operating system?
Dolphin r3674, WinXP SP3, AMD Athlon 64 X2 Dual Core Processor 4600+,
NVIDIA GeForce 6150E, 512 MB Video Memory
Please provide any additional information below.
When game is not run interface is normal.
Updated by ekshenman over 15 years ago
I understand. There is:
- Open Dolphin
- Open DSP configuration
- Close DSP configuration
- Open again DSP configuration
- Choose "Audio Backend"
Every time DPS increase number of plugins by 3.
Updated by ekshenman over 15 years ago
Some code about ConfigDlg.cpp:
67 m_BackendSelection->SetToolTip(wxT("Changing this will have no effect while the
emulator is running!")); - Why? User can change this value.
Maybe this:
m_BackendSelection->SetToolTip(wxT("Choose audio backend plugin for your
opportunity."));
And there is:
void DSPConfigDialogHLE::AddBackend(const char* backend)
{
// Update values
m_BackendSelection->Append(wxString::FromAscii(backend));
#ifdef APPLE
m_BackendSelection->SetValue(wxString::FromAscii(ac_Config.sBackend));
#else
m_BackendSelection->SetValue(wxString::FromAscii(ac_Config.sBackend.c_str
()));
#endif
// Unfortunately, DSound is the only API having a volume setting...
#ifndef _WIN32
m_volumeSlider->Disable();
m_volumeText->Disable();
#endif
}
Where is you clear your combobox? In main.cpp you address to this fucntion.
Updated by robotcanadia over 15 years ago
Oops, for got to mention it's r3661 or earlier
Updated by XTra.KrazzY over 15 years ago
- Status changed from New to Accepted
should be pretty simple to fix, I'll get on it later.