マスタエディタ:SDアクセス権の表示がクリアされない問題を修正。MRC機能のアクセスコントロールの不正ビットの定義がおかしかった点を修正。

git-svn-id: file:///Users/lillianskinner/Downloads/platinum/twl/TwlToolsRED@350 7061adef-622a-194b-ae81-725974e89856
This commit is contained in:
nishikawa_takeshi 2009-07-06 12:19:07 +00:00
parent 17b545011a
commit b3a0f9cf5d
9 changed files with 34 additions and 3 deletions

View File

@ -83,7 +83,8 @@ void Form1::setSrlForms(void)
this->tboxIsCodec->Text = gcnew System::String( "DS" );
}
this->cboxIsSD->Checked = this->hSrl->IsSD;
if( this->hSrl->IsSD && !this->hSrl->IsOldSDK52Release )
this->tboxSDAccessRight->Text = ""; // 2回連続してROMを読み込むときのために初期化しておく
if( this->hSrl->IsSD && !this->hSrl->IsOldSDK52Release ) // SDアクセスしない場合には空白
{
System::String ^sdright = "";
if( this->hSrl->IsSDRead && this->hSrl->IsSDWrite )

View File

@ -447,7 +447,7 @@ ECDeliverableResult RCDeliverable::writeSpreadsheet(
}
if( node->FirstChild->Value->Equals( "TagSDAccessRight" ) )
{
if( hSrl->IsSD && !hSrl->IsOldSDK52Release )
if( hSrl->IsSD && !hSrl->IsOldSDK52Release ) // SDアクセスしない場合には空白
{
if( hSrl->IsSDRead && hSrl->IsSDWrite )
node->FirstChild->Value = gcnew System::String("Read/Write");

View File

@ -787,7 +787,7 @@ void RCSrl::mrcAccessControl(FILE *fp)
this->hErrorList->Add( this->makeMrcError("IllegalAccessUser", "Common Client Key for the debugger system menu") );
}
u32 okbits = 0x80007FFF;
u32 okbits = 0x8001FFFF;
u32 *p = (u32*)&(this->pRomHeader->s);
if( p[ 0x1b4 / 4 ] & ~okbits )
{

View File

@ -60,6 +60,18 @@
font-weight: normal;
font-size: 12px;
}
td.errname {
width: 200px;
}
td.errtype {
width: 100px;
}
td.errrange {
width: 100px;
}
td.errmsg {
width: 600px;
}
</style>
</head>

View File

@ -43,6 +43,15 @@
font-weight: normal;
font-size: 12px;
}
td.publisher {
width: 200px;
}
td.name {
width: 400px;
}
td.note {
width: 400px;
}
</style>
</head>

View File

@ -43,6 +43,15 @@
font-weight: normal;
font-size: 12px;
}
td.publisher {
width: 200px;
}
td.name {
width: 400px;
}
td.note {
width: 400px;
}
</style>
</head>