mirror of
https://github.com/rvtr/ctr_Repair.git
synced 2025-10-31 13:51:08 -04:00
スキップした場合にログを残すように
git-svn-id: file:///Volumes/Transfer/gigaleak_20231201/2020-05-23%20-%20ctr.7z%20+%20svn_v1.068.zip/ctr/svn/ctr_Repair@503 385bec56-5757-e545-9c3a-d8741f4650f1
This commit is contained in:
parent
b6a408fd73
commit
2f05e2e97e
@ -386,7 +386,7 @@ void SaveDataMover::ImportSystemSaveData(void* buf, size_t bufSize, u64* progres
|
||||
m_Result = input.TryInitialize(name);
|
||||
if(m_Result.IsFailure())
|
||||
{
|
||||
NN_LOG("Failed to open save data file, r = %08x\n", m_Result.GetPrintableBits());
|
||||
COMMON_LOGGER_RESULT_IF_FAILED_WITH_LINE(m_Result);
|
||||
continue;
|
||||
}
|
||||
|
||||
@ -396,7 +396,7 @@ void SaveDataMover::ImportSystemSaveData(void* buf, size_t bufSize, u64* progres
|
||||
m_Result = nn::fs::CreateAndOpenNewSystemSaveDataRawStorageFile(&output, id, input.GetSize());
|
||||
if(m_Result.IsFailure())
|
||||
{
|
||||
NN_LOG("Failed to open storage on nand, r = %08x\n", m_Result.GetPrintableBits());
|
||||
COMMON_LOGGER_RESULT_IF_FAILED_WITH_LINE(m_Result);
|
||||
continue;
|
||||
}
|
||||
|
||||
@ -407,7 +407,7 @@ void SaveDataMover::ImportSystemSaveData(void* buf, size_t bufSize, u64* progres
|
||||
m_Result = CopyFile(input, output, buf, bufSize, progress);
|
||||
if(m_Result.IsFailure())
|
||||
{
|
||||
NN_LOG("Failed to copy, r = %08x\n", m_Result.GetPrintableBits());
|
||||
COMMON_LOGGER_RESULT_IF_FAILED_WITH_LINE(m_Result);
|
||||
continue;
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user