DolphinQt: Fix invalid error message when trying to save a zero-sized game config.

This commit is contained in:
Jordan Woyak 2019-03-02 20:53:42 -06:00
parent 4e5702de0f
commit 2cec5d0a08
1 changed files with 4 additions and 1 deletions

View File

@ -121,11 +121,14 @@ void GameConfigEdit::SaveFile()
QFile file(m_path);
if (!file.open(QIODevice::WriteOnly | QIODevice::Truncate | QIODevice::Text))
{
QMessageBox::warning(this, tr("Warning"), tr("Failed to open config file!"));
return;
}
const QByteArray contents = m_edit->toPlainText().toUtf8();
if (!file.write(contents))
if (file.write(contents) == -1)
QMessageBox::warning(this, tr("Warning"), tr("Failed to write config file!"));
}