mirror of https://github.com/PCSX2/pcsx2.git
Debugger: Use native separators when using external symbol files
This commit is contained in:
parent
bea471a0e3
commit
5441c7ed59
|
@ -344,7 +344,7 @@ void DebugAnalysisSettingsWidget::setupSymbolFileList()
|
||||||
|
|
||||||
void DebugAnalysisSettingsWidget::addSymbolFile()
|
void DebugAnalysisSettingsWidget::addSymbolFile()
|
||||||
{
|
{
|
||||||
QString path = QFileDialog::getOpenFileName(this, tr("Add Symbol File"));
|
QString path = QDir::toNativeSeparators(QFileDialog::getOpenFileName(this, tr("Add Symbol File")));
|
||||||
if (path.isEmpty())
|
if (path.isEmpty())
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue