DEV9: Fix HDD file overwrite check

This commit is contained in:
TheLastRar 2022-12-02 19:28:46 +00:00 committed by refractionpcsx2
parent 4badb5b975
commit 8d3325e6cd
1 changed files with 1 additions and 1 deletions

View File

@ -784,7 +784,7 @@ void DEV9SettingsWidget::onHddCreateClicked()
if (!Path::IsAbsolute(hddPath))
hddPath = Path::Combine(EmuFolders::Settings, hddPath);
if (!FileSystem::FileExists(hddPath.c_str()))
if (FileSystem::FileExists(hddPath.c_str()))
{
//GHC uses UTF8 on all platforms
QMessageBox::StandardButton selection =