mirror of
https://github.com/rvtr/ctr_Repair.git
synced 2025-10-31 13:51:08 -04:00
NUP専用モード時はバージョンデータを読まないように
git-svn-id: file:///Volumes/Transfer/gigaleak_20231201/2020-05-23%20-%20ctr.7z%20+%20svn_v1.068.zip/ctr/svn/ctr_Repair@473 385bec56-5757-e545-9c3a-d8741f4650f1
This commit is contained in:
parent
5378fdb568
commit
b2b9beaf88
@ -251,6 +251,7 @@ void CheckApSetting(common::HardwareStateManager& manager, ::std::vector<std::st
|
|||||||
// 1.5CUP限定
|
// 1.5CUP限定
|
||||||
// バックアップバージョンが1.5CUP or IVS取得モードなら
|
// バックアップバージョンが1.5CUP or IVS取得モードなら
|
||||||
// リストアせずCUPツールを要求する画面に飛ばす。
|
// リストアせずCUPツールを要求する画面に飛ばす。
|
||||||
|
// NUP専用モードなら無条件で次に進む
|
||||||
if(CheckNeedsCup(manager, message, goNextStep))
|
if(CheckNeedsCup(manager, message, goNextStep))
|
||||||
{
|
{
|
||||||
return;
|
return;
|
||||||
@ -269,6 +270,7 @@ bool CheckNeedsCup(common::HardwareStateManager& manager, ::std::vector<std::str
|
|||||||
NN_UNUSED_VAR(message);
|
NN_UNUSED_VAR(message);
|
||||||
NN_UNUSED_VAR(goNextStep);
|
NN_UNUSED_VAR(goNextStep);
|
||||||
|
|
||||||
|
// IVS取得モード
|
||||||
if (s_GetIvsOnlyMode)
|
if (s_GetIvsOnlyMode)
|
||||||
{
|
{
|
||||||
if (IsLowerthan1_5(manager))
|
if (IsLowerthan1_5(manager))
|
||||||
@ -284,6 +286,12 @@ bool CheckNeedsCup(common::HardwareStateManager& manager, ::std::vector<std::str
|
|||||||
return s_NeedsCup;
|
return s_NeedsCup;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
// NUP専用モード
|
||||||
|
if (s_NupOnlyMode)
|
||||||
|
{
|
||||||
|
s_NeedsCup = false;
|
||||||
|
return s_NeedsCup;
|
||||||
|
}
|
||||||
|
|
||||||
if(s_ReadSdVersionData)
|
if(s_ReadSdVersionData)
|
||||||
{
|
{
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user