mirror of
https://github.com/rvtr/TwlToolsRED.git
synced 2025-10-31 06:41:18 -04:00
出力チェッカ:ベリファイの範囲がおかしかった問題を修正。提出確認書のUnnecessaryフラグが立っていないときにエラーを出力していた問題を修正。
git-svn-id: file:///Users/lillianskinner/Downloads/platinum/twl/TwlToolsRED@185 7061adef-622a-194b-ae81-725974e89856
This commit is contained in:
parent
3cdc51095b
commit
b208a26b19
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -184,7 +184,8 @@ System::Void checkRom( FilenameItem ^fItem, System::String ^orgSrl, System::Stri
|
||||
// マスタエディタで書き換えられていない領域をチェック
|
||||
verifyArea( fp1, fp2, 0, 0x1b0 );
|
||||
verifyArea( fp1, fp2, 0x1b4, 0x2f0 - 0x1b4 );
|
||||
verifyArea( fp1, fp2, 0x300, filesize1 - 0x300 );
|
||||
verifyArea( fp1, fp2, 0x300, 0xf80 - 0x300 );
|
||||
verifyArea( fp1, fp2, 0x1000, filesize1 - 0x1000 );
|
||||
DebugPrint( "--------------------------------------------------------" );
|
||||
}
|
||||
|
||||
|
||||
@ -150,7 +150,7 @@ System::Void checkSheet( FilenameItem ^fItem, SheetItem ^sItem )
|
||||
}
|
||||
|
||||
// 「レーティング不要」フラグが立っていてはいけない
|
||||
if( !sItem->IsUnnecessaryRating )
|
||||
if( sItem->IsUnnecessaryRating )
|
||||
{
|
||||
throw (gcnew System::Exception("In Sheet, \"Unnecessary\" flag is asserted."));
|
||||
return;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user