Formatting: Apply AlignWithSpaces

This commit is contained in:
TellowKrinkle
2025-07-31 15:20:27 +02:00
committed by lightningterror
parent c5820a4f54
commit 8fd91cb7df
46 changed files with 428 additions and 443 deletions
+2 -2
View File
@@ -101,7 +101,7 @@ void MemoryCardCreateDialog::createCard()
const QString name = m_ui.name->text();
const std::string name_str = QStringLiteral("%1.%2").arg(name)
.arg((m_fileType == MemoryCardFileType::PS1) ? QStringLiteral("mcr") : QStringLiteral("ps2"))
.toStdString();
.toStdString();
if (!Path::IsValidFileName(name_str, false))
{
QMessageBox::critical(this, tr("Create Memory Card"),
@@ -123,7 +123,7 @@ void MemoryCardCreateDialog::createCard()
return;
}
#ifdef _WIN32
#ifdef _WIN32
if (m_type == MemoryCardType::File)
{
const std::string fullPath = Path::Combine(EmuFolders::MemoryCards, name_str);