マスタエディタ:提出確認書のリマスターバージョンを16進に変更。

git-svn-id: file:///Users/lillianskinner/Downloads/platinum/twl/TwlIPL/trunk@2630 b08762b0-b915-fc4b-9d8c-17b2551a87ff
This commit is contained in:
nishikawa_takeshi 2008-10-17 00:28:46 +00:00
parent 4ea14d834f
commit 9995755838
4 changed files with 5 additions and 8 deletions

View File

@ -208,21 +208,18 @@ ECDeliverableResult RCDeliverable::writeSpreadsheet(
} }
if( node->FirstChild->Value->Equals( "TagRomVersion" ) ) if( node->FirstChild->Value->Equals( "TagRomVersion" ) )
{ {
if( *(hSrl->hRomVersion) != 0xE0 ) node->FirstChild->Value = hSrl->hRomVersion->ToString("X2");
{ if( *(hSrl->hRomVersion) == 0xE0 )
node->FirstChild->Value = hSrl->hRomVersion->ToString();
}
else
{ {
if( english ) if( english )
node->FirstChild->Value = gcnew System::String( "E (Preliminary ver.)" ); node->FirstChild->Value += "(Preliminary ver.)";
else else
node->FirstChild->Value = gcnew System::String( "E (ŽO”Å)" ); node->FirstChild->Value += "O”Å)";
} }
} }
if( node->FirstChild->Value->Equals( "TagSubmitVersion" ) ) if( node->FirstChild->Value->Equals( "TagSubmitVersion" ) )
{ {
node->FirstChild->Value = this->hSubmitVersion->ToString(); node->FirstChild->Value = this->hSubmitVersion->ToString("X");
} }
if( node->FirstChild->Value->Equals( "TagSrlFilename" ) ) if( node->FirstChild->Value->Equals( "TagSrlFilename" ) )
{ {