From 8e66dda90dc9783f4b507b80c3e07920e29c7e98 Mon Sep 17 00:00:00 2001 From: N2614 Date: Thu, 10 Feb 2011 01:48:53 +0000 Subject: [PATCH] =?UTF-8?q?=E4=B8=8A=E7=94=BB=E9=9D=A2=E3=81=AF=E9=BB=92?= =?UTF-8?q?=E5=A1=97=E3=82=8A=E3=81=A4=E3=81=B6=E3=81=97=E3=81=AE=E3=81=BE?= =?UTF-8?q?=E3=81=BE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: file:///Volumes/Transfer/gigaleak_20231201/2020-05-23%20-%20ctr.7z%20+%20svn_v1.068.zip/ctr/svn/ctr_Repair@43 385bec56-5757-e545-9c3a-d8741f4650f1 --- .../ConsoleBackup/ConsoleBackup.cpp | 2 -- .../ConsoleRestore/ConsoleRestore.cpp | 2 -- .../common/DrawSystemState.cpp | 15 +-------------- .../ConsoleDataMigration/common/DrawSystemState.h | 2 -- 4 files changed, 1 insertion(+), 20 deletions(-) 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,