mirror of https://github.com/PCSX2/pcsx2.git
DEV9: Fix HDD file overwrite check
This commit is contained in:
parent
4badb5b975
commit
8d3325e6cd
|
@ -784,7 +784,7 @@ void DEV9SettingsWidget::onHddCreateClicked()
|
||||||
if (!Path::IsAbsolute(hddPath))
|
if (!Path::IsAbsolute(hddPath))
|
||||||
hddPath = Path::Combine(EmuFolders::Settings, 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
|
//GHC uses UTF8 on all platforms
|
||||||
QMessageBox::StandardButton selection =
|
QMessageBox::StandardButton selection =
|
||||||
|
|
Loading…
Reference in New Issue