mirror of
https://github.com/rvtr/TwlToolsRED.git
synced 2025-10-31 06:41:18 -04:00
マスタエディタ:提出確認書の"○"を"Yes"に変更し、空欄を"No"に変更。
git-svn-id: file:///Users/lillianskinner/Downloads/platinum/twl/TwlToolsRED@227 7061adef-622a-194b-ae81-725974e89856
This commit is contained in:
parent
8eaa3c7552
commit
c2bb9bacb6
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -9,6 +9,9 @@
|
||||
#include <cstring>
|
||||
#include <cstdio>
|
||||
|
||||
#define METWL_SHEET_YES ("Yes")
|
||||
#define METWL_SHEET_NO ("No")
|
||||
|
||||
using namespace MasterEditorTWL;
|
||||
|
||||
//
|
||||
@ -160,9 +163,9 @@ ECDeliverableResult RCDeliverable::writeSpreadsheet(
|
||||
if( node->FirstChild->Value->Equals( "TagReleaseForeign" ) )
|
||||
{
|
||||
if( this->IsReleaseForeign )
|
||||
node->FirstChild->Value = gcnew System::String( "<EFBFBD>›" );
|
||||
node->FirstChild->Value = gcnew System::String(METWL_SHEET_YES);
|
||||
else
|
||||
node->FirstChild->Value = nullptr;
|
||||
node->FirstChild->Value = gcnew System::String(METWL_SHEET_NO);
|
||||
}
|
||||
if( node->FirstChild->Value->Equals( "TagProductNameForeign" ) )
|
||||
{
|
||||
@ -280,16 +283,16 @@ ECDeliverableResult RCDeliverable::writeSpreadsheet(
|
||||
if( node->FirstChild->Value->Equals( "TagIsNormalJump" ) )
|
||||
{
|
||||
if( hSrl->IsNormalJump )
|
||||
node->FirstChild->Value = gcnew System::String("<EFBFBD>›");
|
||||
node->FirstChild->Value = gcnew System::String(METWL_SHEET_YES);
|
||||
else
|
||||
node->FirstChild->Value = nullptr;
|
||||
node->FirstChild->Value = gcnew System::String(METWL_SHEET_NO);
|
||||
}
|
||||
if( node->FirstChild->Value->Equals( "TagIsTmpJump" ) )
|
||||
{
|
||||
if( hSrl->IsTmpJump )
|
||||
node->FirstChild->Value = gcnew System::String("<EFBFBD>›");
|
||||
node->FirstChild->Value = gcnew System::String(METWL_SHEET_YES);
|
||||
else
|
||||
node->FirstChild->Value = nullptr;
|
||||
node->FirstChild->Value = gcnew System::String(METWL_SHEET_NO);
|
||||
}
|
||||
if( node->FirstChild->Value->Equals( "TagNormalRomOffset" ) )
|
||||
{
|
||||
@ -317,51 +320,51 @@ ECDeliverableResult RCDeliverable::writeSpreadsheet(
|
||||
if( node->FirstChild->Value->Equals( "TagIsEULA" ) )
|
||||
{
|
||||
if( hSrl->IsEULA )
|
||||
node->FirstChild->Value = gcnew System::String("<EFBFBD>›");
|
||||
node->FirstChild->Value = gcnew System::String(METWL_SHEET_YES);
|
||||
else
|
||||
node->FirstChild->Value = nullptr;
|
||||
node->FirstChild->Value = gcnew System::String(METWL_SHEET_NO);
|
||||
}
|
||||
if( node->FirstChild->Value->Equals( "TagIsSubBanner" ) )
|
||||
{
|
||||
if( hSrl->IsSubBanner )
|
||||
node->FirstChild->Value = gcnew System::String("<EFBFBD>›");
|
||||
node->FirstChild->Value = gcnew System::String(METWL_SHEET_YES);
|
||||
else
|
||||
node->FirstChild->Value = nullptr;
|
||||
node->FirstChild->Value = gcnew System::String(METWL_SHEET_NO);
|
||||
}
|
||||
if( node->FirstChild->Value->Equals( "TagIsWiFiIcon" ) )
|
||||
{
|
||||
if( hSrl->IsWiFiIcon )
|
||||
node->FirstChild->Value = gcnew System::String("<EFBFBD>›");
|
||||
node->FirstChild->Value = gcnew System::String(METWL_SHEET_YES);
|
||||
else
|
||||
node->FirstChild->Value = nullptr;
|
||||
node->FirstChild->Value = gcnew System::String(METWL_SHEET_NO);
|
||||
}
|
||||
if( node->FirstChild->Value->Equals( "TagIsWirelessIcon" ) )
|
||||
{
|
||||
if( hSrl->IsWirelessIcon )
|
||||
node->FirstChild->Value = gcnew System::String("<EFBFBD>›");
|
||||
node->FirstChild->Value = gcnew System::String(METWL_SHEET_YES);
|
||||
else
|
||||
node->FirstChild->Value = nullptr;
|
||||
node->FirstChild->Value = gcnew System::String(METWL_SHEET_NO);
|
||||
}
|
||||
if( node->FirstChild->Value->Equals( "TagIsSD" ) )
|
||||
{
|
||||
if( hSrl->IsSD )
|
||||
node->FirstChild->Value = gcnew System::String("<EFBFBD>›");
|
||||
node->FirstChild->Value = gcnew System::String(METWL_SHEET_YES);
|
||||
else
|
||||
node->FirstChild->Value = nullptr;
|
||||
node->FirstChild->Value = gcnew System::String(METWL_SHEET_NO);
|
||||
}
|
||||
if( node->FirstChild->Value->Equals( "TagIsNAND" ) )
|
||||
{
|
||||
if( hSrl->IsNAND )
|
||||
node->FirstChild->Value = gcnew System::String("<EFBFBD>›");
|
||||
node->FirstChild->Value = gcnew System::String(METWL_SHEET_YES);
|
||||
else
|
||||
node->FirstChild->Value = nullptr;
|
||||
node->FirstChild->Value = gcnew System::String(METWL_SHEET_NO);
|
||||
}
|
||||
if( node->FirstChild->Value->Equals( "TagIsShared2" ) )
|
||||
{
|
||||
if( hSrl->IsShared2 )
|
||||
node->FirstChild->Value = gcnew System::String("<EFBFBD>›");
|
||||
node->FirstChild->Value = gcnew System::String(METWL_SHEET_YES);
|
||||
else
|
||||
node->FirstChild->Value = nullptr;
|
||||
node->FirstChild->Value = gcnew System::String(METWL_SHEET_NO);
|
||||
}
|
||||
if( node->FirstChild->Value->Equals( "TagIsGameCardOn" ) )
|
||||
{
|
||||
@ -515,11 +518,11 @@ ECDeliverableResult RCDeliverable::writeSpreadsheet(
|
||||
{
|
||||
if( hSrl->IsUnnecessaryRating )
|
||||
{
|
||||
node->FirstChild->Value = "<EFBFBD>›";
|
||||
node->FirstChild->Value = gcnew System::String(METWL_SHEET_YES);
|
||||
}
|
||||
else
|
||||
{
|
||||
node->FirstChild->Value = nullptr;
|
||||
node->FirstChild->Value = gcnew System::String(METWL_SHEET_NO);
|
||||
}
|
||||
}
|
||||
|
||||
@ -542,16 +545,16 @@ ECDeliverableResult RCDeliverable::writeSpreadsheet(
|
||||
if( node->FirstChild->Value->Equals( "TagIsUGC" ) )
|
||||
{
|
||||
if( this->IsUGC )
|
||||
node->FirstChild->Value = gcnew System::String("<EFBFBD>›");
|
||||
node->FirstChild->Value = gcnew System::String(METWL_SHEET_YES);
|
||||
else
|
||||
node->FirstChild->Value = nullptr;
|
||||
node->FirstChild->Value = gcnew System::String(METWL_SHEET_NO);
|
||||
}
|
||||
if( node->FirstChild->Value->Equals( "TagIsPhotoEx" ) )
|
||||
{
|
||||
if( this->IsPhotoEx )
|
||||
node->FirstChild->Value = gcnew System::String("<EFBFBD>›");
|
||||
node->FirstChild->Value = gcnew System::String(METWL_SHEET_YES);
|
||||
else
|
||||
node->FirstChild->Value = nullptr;
|
||||
node->FirstChild->Value = gcnew System::String(METWL_SHEET_NO);
|
||||
}
|
||||
|
||||
// ROM内登録データを1バイトずつ表に書き込む
|
||||
|
||||
Loading…
Reference in New Issue
Block a user