mirror of
https://github.com/stenzek/duckstation.git
synced 2024-11-23 05:49:43 +00:00
Qt: Fix legacy cht file clearing
Some checks are pending
Create rolling release / Windows x64 Build (push) Waiting to run
Create rolling release / Windows x64 SSE2 Build (push) Waiting to run
Create rolling release / Windows ARM64 Build (push) Waiting to run
Create rolling release / Linux x64 AppImage (push) Waiting to run
Create rolling release / Linux x64 SSE2 AppImage (push) Waiting to run
Create rolling release / Linux Flatpak Build (push) Waiting to run
Create rolling release / MacOS Universal Build (push) Waiting to run
Create rolling release / Create Release (push) Blocked by required conditions
Some checks are pending
Create rolling release / Windows x64 Build (push) Waiting to run
Create rolling release / Windows x64 SSE2 Build (push) Waiting to run
Create rolling release / Windows ARM64 Build (push) Waiting to run
Create rolling release / Linux x64 AppImage (push) Waiting to run
Create rolling release / Linux x64 SSE2 AppImage (push) Waiting to run
Create rolling release / Linux Flatpak Build (push) Waiting to run
Create rolling release / MacOS Universal Build (push) Waiting to run
Create rolling release / Create Release (push) Blocked by required conditions
This commit is contained in:
parent
ac19768247
commit
88147d8f69
@ -345,7 +345,7 @@ void GameCheatSettingsWidget::checkForMasterDisable()
|
|||||||
if (m_dialog->getSettingsInterface()->GetBoolValue("Cheats", "EnableCheats", false) || m_master_enable_ignored)
|
if (m_dialog->getSettingsInterface()->GetBoolValue("Cheats", "EnableCheats", false) || m_master_enable_ignored)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
QMessageBox mbox;
|
QMessageBox mbox(this);
|
||||||
mbox.setIcon(QMessageBox::Warning);
|
mbox.setIcon(QMessageBox::Warning);
|
||||||
mbox.setWindowTitle(tr("Confirm Cheat Enable"));
|
mbox.setWindowTitle(tr("Confirm Cheat Enable"));
|
||||||
mbox.setWindowIcon(QtHost::GetAppIcon());
|
mbox.setWindowIcon(QtHost::GetAppIcon());
|
||||||
@ -626,7 +626,7 @@ void GameCheatSettingsWidget::onClearClicked()
|
|||||||
disableAllCheats();
|
disableAllCheats();
|
||||||
|
|
||||||
Error error;
|
Error error;
|
||||||
std::string path = Cheats::GetChtFilename(m_dialog->getGameSerial(), std::nullopt, true);
|
std::string path = Cheats::GetChtFilename(m_dialog->getGameSerial(), m_dialog->getGameHash(), true);
|
||||||
if (FileSystem::FileExists(path.c_str()))
|
if (FileSystem::FileExists(path.c_str()))
|
||||||
{
|
{
|
||||||
if (!FileSystem::DeleteFile(path.c_str(), &error))
|
if (!FileSystem::DeleteFile(path.c_str(), &error))
|
||||||
@ -634,7 +634,7 @@ void GameCheatSettingsWidget::onClearClicked()
|
|||||||
}
|
}
|
||||||
|
|
||||||
// check for a non-hashed path and remove that too
|
// check for a non-hashed path and remove that too
|
||||||
path = Cheats::GetChtFilename(m_dialog->getGameSerial(), m_dialog->getGameHash(), true);
|
path = Cheats::GetChtFilename(m_dialog->getGameSerial(), std::nullopt, true);
|
||||||
if (FileSystem::FileExists(path.c_str()))
|
if (FileSystem::FileExists(path.c_str()))
|
||||||
{
|
{
|
||||||
if (!FileSystem::DeleteFile(path.c_str(), &error))
|
if (!FileSystem::DeleteFile(path.c_str(), &error))
|
||||||
@ -644,7 +644,7 @@ void GameCheatSettingsWidget::onClearClicked()
|
|||||||
// and a legacy cht file with the game title
|
// and a legacy cht file with the game title
|
||||||
if (const std::string& title = m_dialog->getGameTitle(); !title.empty())
|
if (const std::string& title = m_dialog->getGameTitle(); !title.empty())
|
||||||
{
|
{
|
||||||
path = Path::Combine(EmuFolders::Cheats, Path::SanitizeFileName(title));
|
path = fmt::format("{}" FS_OSPATH_SEPARATOR_STR "{}.cht", EmuFolders::Cheats, Path::SanitizeFileName(title));
|
||||||
if (FileSystem::FileExists(path.c_str()))
|
if (FileSystem::FileExists(path.c_str()))
|
||||||
{
|
{
|
||||||
if (!FileSystem::DeleteFile(path.c_str(), &error))
|
if (!FileSystem::DeleteFile(path.c_str(), &error))
|
||||||
|
Loading…
Reference in New Issue
Block a user