mirror of
https://github.com/rvtr/TwlToolsRED.git
synced 2025-10-31 06:41:18 -04:00
マスタエディタ:SDアクセス権の表示がクリアされない問題を修正。MRC機能のアクセスコントロールの不正ビットの定義がおかしかった点を修正。
git-svn-id: file:///Users/lillianskinner/Downloads/platinum/twl/TwlToolsRED@350 7061adef-622a-194b-ae81-725974e89856
This commit is contained in:
parent
17b545011a
commit
b3a0f9cf5d
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -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 )
|
||||
|
||||
@ -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");
|
||||
|
||||
@ -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 )
|
||||
{
|
||||
|
||||
@ -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>
|
||||
|
||||
|
||||
@ -43,6 +43,15 @@
|
||||
font-weight: normal;
|
||||
font-size: 12px;
|
||||
}
|
||||
td.publisher {
|
||||
width: 200px;
|
||||
}
|
||||
td.name {
|
||||
width: 400px;
|
||||
}
|
||||
td.note {
|
||||
width: 400px;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
|
||||
|
||||
@ -43,6 +43,15 @@
|
||||
font-weight: normal;
|
||||
font-size: 12px;
|
||||
}
|
||||
td.publisher {
|
||||
width: 200px;
|
||||
}
|
||||
td.name {
|
||||
width: 400px;
|
||||
}
|
||||
td.note {
|
||||
width: 400px;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user