Fix clang-format and unused include
This commit is contained in:
parent
fd7ada2a9c
commit
e14b9f7a25
|
@ -31,7 +31,6 @@
|
||||||
#include "core/hle/kernel/kernel.h"
|
#include "core/hle/kernel/kernel.h"
|
||||||
#include "core/hle/kernel/process.h"
|
#include "core/hle/kernel/process.h"
|
||||||
#include "core/hle/kernel/thread.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/applet_manager.h"
|
||||||
#include "core/hle/service/apt/apt.h"
|
#include "core/hle/service/apt/apt.h"
|
||||||
#include "core/hle/service/fs/archive.h"
|
#include "core/hle/service/fs/archive.h"
|
||||||
|
|
|
@ -321,10 +321,11 @@ bool CIAFile::Close() const {
|
||||||
// If the file to delete is the current launched rom, signal the system to delete
|
// 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
|
// the current rom instead of deleting it now, once all the handles to the file
|
||||||
// are closed.
|
// 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() &&
|
if (!(Core::System::GetInstance().IsPoweredOn() &&
|
||||||
Core::System::GetInstance().SetSelfDelete(toDelete)))
|
Core::System::GetInstance().SetSelfDelete(to_delete)))
|
||||||
FileUtil::Delete(toDelete);
|
FileUtil::Delete(to_delete);
|
||||||
}
|
}
|
||||||
|
|
||||||
FileUtil::Delete(old_tmd_path);
|
FileUtil::Delete(old_tmd_path);
|
||||||
|
|
Reference in New Issue