IVS取得モードでIVS取得後にeTicket同期するように

git-svn-id: file:///Volumes/Transfer/gigaleak_20231201/2020-05-23%20-%20ctr.7z%20+%20svn_v1.068.zip/ctr/svn/ctr_Repair@329 385bec56-5757-e545-9c3a-d8741f4650f1
This commit is contained in:
N2614 2011-06-07 11:16:17 +00:00
parent 2660725f42
commit d73a34fe32

View File

@ -1316,8 +1316,16 @@ void ControlState(common::HardwareStateManager& manager, ::std::vector<std::stri
case SYNC_TICKET:
{
ShopOperationSingleTemplate(manager, operationMessage, SHOP_OPERATION_CONNECT, "Shop Connect",
"Shop Connect Finished.\n", "Shop Connect Failed. Retrying...", DOWNLOAD_TWL);
if(s_GetIvsOnlyMode)
{
ShopOperationSingleTemplate(manager, operationMessage, SHOP_OPERATION_CONNECT, "Shop Connect",
"Shop Connect Finished.\n", "Shop Connect Failed. Retrying...", WAIT_SD_EJECT);
}
else
{
ShopOperationSingleTemplate(manager, operationMessage, SHOP_OPERATION_CONNECT, "Shop Connect",
"Shop Connect Finished.\n", "Shop Connect Failed. Retrying...", DOWNLOAD_TWL);
}
}
break;
@ -1489,8 +1497,12 @@ void ControlState(common::HardwareStateManager& manager, ::std::vector<std::stri
case DOWNLOAD_IVS_WAIT_NEXT:
{
s_RestoreState = WAIT_SD_EJECT;
DeleteAllCheckFiles();
operationMessage.push_back(::std::string("Press A or START Button to Continue."));
if(nextStep)
{
s_RestoreState = SYNC_TICKET;
DeleteAllCheckFiles();
}
}
break;