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;