From 8f878dc3ee92fe88a9007f5dccc7fd3c15a85342 Mon Sep 17 00:00:00 2001 From: N2614 Date: Tue, 24 May 2011 08:02:33 +0000 Subject: [PATCH] =?UTF-8?q?TWL=E3=82=BF=E3=82=A4=E3=83=88=E3=83=AB?= =?UTF-8?q?=E3=83=80=E3=82=A6=E3=83=B3=E3=83=AD=E3=83=BC=E3=83=89=E3=83=81?= =?UTF-8?q?=E3=82=A7=E3=83=83=E3=82=AF=E9=96=93=E9=9A=94=E3=82=92=E9=95=B7?= =?UTF-8?q?=E3=81=8F=20accountStatus=E3=81=8C'T'=E3=81=AE=E6=99=82?= =?UTF-8?q?=E3=82=82=E3=82=A2=E3=82=AB=E3=82=A6=E3=83=B3=E3=83=88=E5=89=8A?= =?UTF-8?q?=E9=99=A4=E3=81=99=E3=82=8B=E3=82=88=E3=81=86=E3=81=AB?= 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@269 385bec56-5757-e545-9c3a-d8741f4650f1 --- trunk/ConsoleDataMigration/sources/ConsoleRestore/Shop.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/trunk/ConsoleDataMigration/sources/ConsoleRestore/Shop.cpp b/trunk/ConsoleDataMigration/sources/ConsoleRestore/Shop.cpp index f87c070..991acd3 100644 --- a/trunk/ConsoleDataMigration/sources/ConsoleRestore/Shop.cpp +++ b/trunk/ConsoleDataMigration/sources/ConsoleRestore/Shop.cpp @@ -402,7 +402,8 @@ void ShopOperationSingleThreadFunc(ShopThreadParam param) ECAccountInfo* pAccountInfo; result = ShopOperationConnect(&pAccountInfo); NIM_SHOP_RESULT_CHECK(result); - if (pAccountInfo->accountStatus && pAccountInfo->accountStatus[0] == 'R') + if (pAccountInfo->accountStatus && (pAccountInfo->accountStatus[0] == 'R' + || (pAccountInfo->accountStatus[0] == 'T'))) { /* --------------------------------------------------------------- Unregister @@ -483,7 +484,7 @@ void ShopOperationSingleThreadFunc(ShopThreadParam param) // あまりにも頻繁に GetProgress を呼ぶと、ダウンロード処理の速度に // 影響が出てしまいます。少なくとも数フレーム以上の間隔をあけて // GetProgress することを推奨します。 - nn::os::Thread::Sleep(nn::fnd::TimeSpan::FromMilliSeconds(50)); + nn::os::Thread::Sleep(nn::fnd::TimeSpan::FromMilliSeconds(100)); } } break;