diff --git a/build/tools/MasterEditor/MasterEditorTWL/MasterEditorTWL.ncb b/build/tools/MasterEditor/MasterEditorTWL/MasterEditorTWL.ncb index 0a2ea0e..5c12563 100644 Binary files a/build/tools/MasterEditor/MasterEditorTWL/MasterEditorTWL.ncb and b/build/tools/MasterEditor/MasterEditorTWL/MasterEditorTWL.ncb differ diff --git a/build/tools/MasterEditor/MasterEditorTWL/MasterEditorTWL.suo b/build/tools/MasterEditor/MasterEditorTWL/MasterEditorTWL.suo index aac016d..46043a3 100644 Binary files a/build/tools/MasterEditor/MasterEditorTWL/MasterEditorTWL.suo and b/build/tools/MasterEditor/MasterEditorTWL/MasterEditorTWL.suo differ diff --git a/build/tools/MasterEditor/MasterEditorTWL/MasterEditorTWL/Debug/BuildLog.htm b/build/tools/MasterEditor/MasterEditorTWL/MasterEditorTWL/Debug/BuildLog.htm index 8b31577..70b8e39 100644 Binary files a/build/tools/MasterEditor/MasterEditorTWL/MasterEditorTWL/Debug/BuildLog.htm and b/build/tools/MasterEditor/MasterEditorTWL/MasterEditorTWL/Debug/BuildLog.htm differ diff --git a/build/tools/MasterEditor/MasterEditorTWL/MasterEditorTWL/Form1.h b/build/tools/MasterEditor/MasterEditorTWL/MasterEditorTWL/Form1.h index 0881faa..7818a27 100644 --- a/build/tools/MasterEditor/MasterEditorTWL/MasterEditorTWL/Form1.h +++ b/build/tools/MasterEditor/MasterEditorTWL/MasterEditorTWL/Form1.h @@ -4745,6 +4745,16 @@ private: System::Windows::Forms::TextBox^ tboxPurposeInError; this->changePurposeForms(this->rPurposeOther); // わざわざこれを選ぶには特別な理由があるだろうから"その他"にチェックをつけかえる } } + // 英語版では"Touch!Try!DS"をなくす + if( this->hSrl->IsRegionAmerica ) + { + this->rPurposeDSStation->Enabled = false; + if( this->rPurposeDSStation->Checked ) + { + this->changePurposeForms(this->rPurposeOther); + } + } + } //maskPurposeForms() private: @@ -5753,18 +5763,36 @@ private: System::Windows::Forms::TextBox^ tboxPurposeInError; this->changeUnnecessaryRatingForms(false); // 一度コンボボックスがenableになるので再設定 // リージョン変更によって表示する「用途」を変更する - if( this->combRegion->SelectedIndex == 0 ) // 日本リージョンの場合には「店頭体験版(単独型)」を非表示にする + + // 日本リージョンの場合には"店頭体験版(単独型)"を非表示にする + if( this->combRegion->SelectedIndex == 0 ) { + this->rPurposeCardKiosk->Enabled = false; if( this->rPurposeCardKiosk->Checked ) { this->changePurposeForms( this->rPurposeOther ); } - this->rPurposeCardKiosk->Enabled = false; } else { this->rPurposeCardKiosk->Enabled = true; } + + // 英語版では"Touch!Try!DS"をなくす + if( (this->combRegion->SelectedIndex == 1) || + (this->combRegion->SelectedIndex == 5) || + (this->combRegion->SelectedIndex == 6) ) + { + this->rPurposeDSStation->Enabled = false; + if( this->rPurposeDSStation->Checked ) + { + this->changePurposeForms(this->rPurposeOther); + } + } + else + { + this->rPurposeDSStation->Enabled = true; + } } private: // レーティング表示不要が選択されたときにレーティングを選択不可にする diff --git a/build/tools/MasterEditor/MasterEditorTWL/MasterEditorTWL/Release/BuildLog.htm b/build/tools/MasterEditor/MasterEditorTWL/MasterEditorTWL/Release/BuildLog.htm index ed7b13e..f03a026 100644 Binary files a/build/tools/MasterEditor/MasterEditorTWL/MasterEditorTWL/Release/BuildLog.htm and b/build/tools/MasterEditor/MasterEditorTWL/MasterEditorTWL/Release/BuildLog.htm differ