mirror of
https://github.com/rvtr/TwlIPL.git
synced 2025-10-31 06:01:12 -04:00
マスターエディタ:カードアプリのNAND/SDアクセスエラーを警告に変更。エラー情報タブのラベルを変更。
git-svn-id: file:///Users/lillianskinner/Downloads/platinum/twl/TwlIPL/trunk@2555 b08762b0-b915-fc4b-9d8c-17b2551a87ff
This commit is contained in:
parent
738400a41d
commit
65528de3d6
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -3194,7 +3194,7 @@ private: System::Windows::Forms::DataGridViewTextBoxColumn^ colLibName;
|
|||||||
this->tabErrorInfo->Name = L"tabErrorInfo";
|
this->tabErrorInfo->Name = L"tabErrorInfo";
|
||||||
this->tabErrorInfo->Size = System::Drawing::Size(745, 352);
|
this->tabErrorInfo->Size = System::Drawing::Size(745, 352);
|
||||||
this->tabErrorInfo->TabIndex = 5;
|
this->tabErrorInfo->TabIndex = 5;
|
||||||
this->tabErrorInfo->Text = L"エラー情報(要修正)";
|
this->tabErrorInfo->Text = L"エラー情報(確認用)";
|
||||||
this->tabErrorInfo->UseVisualStyleBackColor = true;
|
this->tabErrorInfo->UseVisualStyleBackColor = true;
|
||||||
//
|
//
|
||||||
// tboxGuideErrorInfo
|
// tboxGuideErrorInfo
|
||||||
|
|||||||
@ -58,7 +58,7 @@ void Form1::changeJapanese(void)
|
|||||||
this->tabRomEditInfo->Text = gcnew System::String( "ROM登録情報(編集可)" );
|
this->tabRomEditInfo->Text = gcnew System::String( "ROM登録情報(編集可)" );
|
||||||
this->tabSubmitInfo->Text = gcnew System::String( "提出情報(編集可)" );
|
this->tabSubmitInfo->Text = gcnew System::String( "提出情報(編集可)" );
|
||||||
this->tabCompanyInfo->Text = gcnew System::String( "会社情報(編集可)" );
|
this->tabCompanyInfo->Text = gcnew System::String( "会社情報(編集可)" );
|
||||||
this->tabErrorInfo->Text = gcnew System::String( "エラー情報(要修正)" );
|
this->tabErrorInfo->Text = gcnew System::String( "エラー情報(確認用)" );
|
||||||
|
|
||||||
// ガイド
|
// ガイド
|
||||||
this->tboxGuideRomInfo->Text = gcnew System::String( "このタブの情報は編集不可です。データに誤りがある場合にはROMデータの作成時の設定を見直してください。" );
|
this->tboxGuideRomInfo->Text = gcnew System::String( "このタブの情報は編集不可です。データに誤りがある場合にはROMデータの作成時の設定を見直してください。" );
|
||||||
@ -281,7 +281,7 @@ void Form1::changeEnglish(void)
|
|||||||
this->tabRomEditInfo->Text = gcnew System::String( "ROM Settings(Editable)" );
|
this->tabRomEditInfo->Text = gcnew System::String( "ROM Settings(Editable)" );
|
||||||
this->tabSubmitInfo->Text = gcnew System::String( "Submission Info.(Editable)" );
|
this->tabSubmitInfo->Text = gcnew System::String( "Submission Info.(Editable)" );
|
||||||
this->tabCompanyInfo->Text = gcnew System::String( "Company Info.(Editable)" );
|
this->tabCompanyInfo->Text = gcnew System::String( "Company Info.(Editable)" );
|
||||||
this->tabErrorInfo->Text = gcnew System::String( "Setting Error" );
|
this->tabErrorInfo->Text = gcnew System::String( "Error(Read Only)" );
|
||||||
|
|
||||||
// ガイド
|
// ガイド
|
||||||
this->tboxGuideRomInfo->Text = gcnew System::String( "This tab is for checking ROM data. When ROM data is illegal, please check settings of building ROM data" );
|
this->tboxGuideRomInfo->Text = gcnew System::String( "This tab is for checking ROM data. When ROM data is illegal, please check settings of building ROM data" );
|
||||||
|
|||||||
@ -1473,9 +1473,9 @@ ECSrlResult RCSrl::mrcTWL( FILE *fp )
|
|||||||
{
|
{
|
||||||
if( (this->pRomHeader->s.access_control.nand_access != 0) || (this->pRomHeader->s.access_control.sd_card_access != 0) )
|
if( (this->pRomHeader->s.access_control.nand_access != 0) || (this->pRomHeader->s.access_control.sd_card_access != 0) )
|
||||||
{
|
{
|
||||||
this->hErrorList->Add( gcnew RCMrcError(
|
this->hWarnList->Add( gcnew RCMrcError(
|
||||||
"アクセスコントロール情報", 0x1b4, 0x1b7,
|
"アクセスコントロール情報", 0x1b4, 0x1b7,
|
||||||
"ゲームカード用ソフトは、NANDフラッシュとSDカードへアクセスできません。アクセスが必要な場合は、弊社窓口にご相談ください。",
|
"ゲームカード用ソフトは、NANDフラッシュメモリとSDカードへアクセスできません。アクセスを希望される場合、弊社窓口にご相談ください。",
|
||||||
"Access Control Info.",
|
"Access Control Info.",
|
||||||
"Game soft for Game Card does'nt access to NAND frash memory and SD Card. If the soft wish to access them, please contact us.",
|
"Game soft for Game Card does'nt access to NAND frash memory and SD Card. If the soft wish to access them, please contact us.",
|
||||||
false, true ) );
|
false, true ) );
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user