Skip to content

Commit

Permalink
Debugger: Use native separators when using external symbol files
Browse files Browse the repository at this point in the history
  • Loading branch information
F0bes committed Nov 6, 2024
1 parent bea471a commit 5441c7e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pcsx2-qt/Settings/DebugAnalysisSettingsWidget.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -344,7 +344,7 @@ void DebugAnalysisSettingsWidget::setupSymbolFileList()

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())
return;

Expand Down

0 comments on commit 5441c7e

Please sign in to comment.