まず無線設定の確認を行うように

git-svn-id: file:///Volumes/Transfer/gigaleak_20231201/2020-05-23%20-%20ctr.7z%20+%20svn_v1.068.zip/ctr/svn/ctr_Repair@90 385bec56-5757-e545-9c3a-d8741f4650f1
This commit is contained in:
N2614 2011-02-24 05:52:34 +00:00
parent e82097d992
commit 908a485786

View File

@ -236,7 +236,12 @@ void ControlState(::std::vector<std::string>& operationMessage, bool& nextStep,
{
CheckAndReadVersionData(operationMessage);
validApSetting = CheckAndReadAPSetting(operationMessage);
if (!validApSetting)
{
error = true;
}
else
{
// NUPが必要か
if (!NeedsNup())
{
@ -281,10 +286,10 @@ void ControlState(::std::vector<std::string>& operationMessage, bool& nextStep,
}
// SDカードにリージョンデータがあるか
if(ExistsRegionData())
if (ExistsRegionData())
{
// リージョンデータは一致しているか?
if(!EqualsRegionDataandRegion())
if (!EqualsRegionDataandRegion())
{
COMMON_LOGGER("Current Region and Region in SD differ!!\n");
error = true;
@ -342,7 +347,7 @@ void ControlState(::std::vector<std::string>& operationMessage, bool& nextStep,
}
else
{
if(validApSetting)
if (validApSetting)
{
// 削除処理を行う
needsErase = true;
@ -365,6 +370,8 @@ void ControlState(::std::vector<std::string>& operationMessage, bool& nextStep,
error = true;
}
}
}
}
else
{