Fix clang-format and unused include

This commit is contained in:
PabloMK7 2022-10-27 01:09:18 +02:00
parent fd7ada2a9c
commit e14b9f7a25
2 changed files with 4 additions and 4 deletions

View file

@ -31,7 +31,6 @@
#include "core/hle/kernel/kernel.h"
#include "core/hle/kernel/process.h"
#include "core/hle/kernel/thread.h"
#include "core/hle/service/am/am.h"
#include "core/hle/service/apt/applet_manager.h"
#include "core/hle/service/apt/apt.h"
#include "core/hle/service/fs/archive.h"

View file

@ -321,10 +321,11 @@ bool CIAFile::Close() const {
// If the file to delete is the current launched rom, signal the system to delete
// the current rom instead of deleting it now, once all the handles to the file
// are closed.
std::string toDelete = GetTitleContentPath(media_type, old_tmd.GetTitleID(), old_index);
std::string to_delete =
GetTitleContentPath(media_type, old_tmd.GetTitleID(), old_index);
if (!(Core::System::GetInstance().IsPoweredOn() &&
Core::System::GetInstance().SetSelfDelete(toDelete)))
FileUtil::Delete(toDelete);
Core::System::GetInstance().SetSelfDelete(to_delete)))
FileUtil::Delete(to_delete);
}
FileUtil::Delete(old_tmd_path);