NTFS: Disable the NTFS checkbox on the platforms that don't have NTFS compression, not the one that does.

This commit is contained in:
arcum42 2022-12-24 22:05:43 -08:00 committed by refractionpcsx2
parent dfb0246826
commit 5c95a6f4fa
1 changed files with 1 additions and 1 deletions

View File

@ -49,7 +49,7 @@ CreateMemoryCardDialog::CreateMemoryCardDialog(QWidget* parent /* = nullptr */)
connect(m_ui.buttonBox->button(QDialogButtonBox::Cancel), &QPushButton::clicked, this, &CreateMemoryCardDialog::close);
connect(m_ui.buttonBox->button(QDialogButtonBox::RestoreDefaults), &QPushButton::clicked, this, &CreateMemoryCardDialog::restoreDefaults);
#ifdef _WIN32
#ifndef _WIN32
m_ui.ntfsCompression->setEnabled(false);
#endif