mirror of
https://github.com/rvtr/ctr_Repair.git
synced 2025-10-31 13:51:08 -04:00
PrintResultが残っていたのをSDログ出力に置換
git-svn-id: file:///Volumes/Transfer/gigaleak_20231201/2020-05-23%20-%20ctr.7z%20+%20svn_v1.068.zip/ctr/svn/ctr_Repair@481 385bec56-5757-e545-9c3a-d8741f4650f1
This commit is contained in:
parent
b635a64a1c
commit
ad17a25364
@ -114,7 +114,7 @@ nn::Result SavedataCheckerBase::CleanUpFilesRecursively(bool* modified, std::str
|
|||||||
result = file.TryInitialize(path);
|
result = file.TryInitialize(path);
|
||||||
if(result.IsFailure())
|
if(result.IsFailure())
|
||||||
{
|
{
|
||||||
nn::dbg::PrintResult(result);
|
COMMON_LOGGER_RESULT_IF_FAILED(result);
|
||||||
const bool silent = IsForceDeleteFile(common::GetCharStr(entry.entryName));
|
const bool silent = IsForceDeleteFile(common::GetCharStr(entry.entryName));
|
||||||
if(!silent)
|
if(!silent)
|
||||||
{
|
{
|
||||||
@ -139,7 +139,7 @@ nn::Result SavedataCheckerBase::CleanUpFilesRecursively(bool* modified, std::str
|
|||||||
result = file.TryRead(&readSize, m_Buf, m_Bufsize);
|
result = file.TryRead(&readSize, m_Buf, m_Bufsize);
|
||||||
if(result.IsFailure())
|
if(result.IsFailure())
|
||||||
{
|
{
|
||||||
nn::dbg::PrintResult(result);
|
COMMON_LOGGER_RESULT_IF_FAILED(result);
|
||||||
const bool silent = IsForceDeleteFile(common::GetCharStr(entry.entryName));
|
const bool silent = IsForceDeleteFile(common::GetCharStr(entry.entryName));
|
||||||
if(!silent)
|
if(!silent)
|
||||||
{
|
{
|
||||||
|
|||||||
@ -928,7 +928,7 @@ bool ExistsIvsDirectory(std::string& ivsRoot)
|
|||||||
result = dir.TryInitialize(common::SD_NINTENDO_3DS_ROOT_PATH);
|
result = dir.TryInitialize(common::SD_NINTENDO_3DS_ROOT_PATH);
|
||||||
if(result.IsFailure())
|
if(result.IsFailure())
|
||||||
{
|
{
|
||||||
NN_DBG_PRINT_RESULT(result);
|
COMMON_LOGGER_RESULT_IF_FAILED(result);
|
||||||
common::SdMountManager::Unmount();
|
common::SdMountManager::Unmount();
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user