diff --git a/trunk/ConsoleDataMigration/ConsoleBackup/ConsoleBackup.cpp b/trunk/ConsoleDataMigration/ConsoleBackup/ConsoleBackup.cpp index cdedb43..e524f5f 100644 --- a/trunk/ConsoleDataMigration/ConsoleBackup/ConsoleBackup.cpp +++ b/trunk/ConsoleDataMigration/ConsoleBackup/ConsoleBackup.cpp @@ -357,8 +357,6 @@ extern "C" void nnMain(void) deviceId, friendCode, GetProgress(), - IsBackupFailed(), - IsBackupSucceeded(), macAddress, operationMessage, region, diff --git a/trunk/ConsoleDataMigration/ConsoleRestore/ConsoleRestore.cpp b/trunk/ConsoleDataMigration/ConsoleRestore/ConsoleRestore.cpp index 14a2484..b05ca65 100644 --- a/trunk/ConsoleDataMigration/ConsoleRestore/ConsoleRestore.cpp +++ b/trunk/ConsoleDataMigration/ConsoleRestore/ConsoleRestore.cpp @@ -381,8 +381,6 @@ extern "C" void nnMain(void) deviceId, friendCode, GetProgress(), - IsRestoreFailed(), - IsRestoreSucceeded(), macAddress, operationMessage, region, diff --git a/trunk/ConsoleDataMigration/common/DrawSystemState.cpp b/trunk/ConsoleDataMigration/common/DrawSystemState.cpp index ef2058a..df58acf 100644 --- a/trunk/ConsoleDataMigration/common/DrawSystemState.cpp +++ b/trunk/ConsoleDataMigration/common/DrawSystemState.cpp @@ -52,8 +52,6 @@ void DrawSystemState bit32 deviceId, u64 friendCode, u32 progress, - bool isBackupFailed, - bool isBackupSucceeded, char8* macAddress, ::std::vector& operationMessage, nn::cfg::CTR::CfgRegionCode region, @@ -62,18 +60,7 @@ void DrawSystemState { // デフォルトで上画面に描画するもの renderSystem.SetRenderTarget(GetRenderTarget(NN_GX_DISPLAY0, flip)); - if (isBackupSucceeded) - { - renderSystem.SetClearColor(GetRenderTarget(NN_GX_DISPLAY0, flip), SUCCESS_COLOR); - } - else if (isBackupFailed) - { - renderSystem.SetClearColor(GetRenderTarget(NN_GX_DISPLAY0, flip), FAIL_COLOR); - } - else - { - renderSystem.SetClearColor(GetRenderTarget(NN_GX_DISPLAY0, flip), NORMAL_COLOR); - } + renderSystem.SetClearColor(GetRenderTarget(NN_GX_DISPLAY0, flip), NORMAL_COLOR); renderSystem.Clear(); diff --git a/trunk/ConsoleDataMigration/common/DrawSystemState.h b/trunk/ConsoleDataMigration/common/DrawSystemState.h index 3a99da5..785a8ff 100644 --- a/trunk/ConsoleDataMigration/common/DrawSystemState.h +++ b/trunk/ConsoleDataMigration/common/DrawSystemState.h @@ -58,8 +58,6 @@ void DrawSystemState bit32 deviceId, u64 friendCode, u32 progress, - bool isBackupFailed, - bool isBackupSucceeded, char8* macAddress, ::std::vector& operationMessage, nn::cfg::CTR::CfgRegionCode region,