マスタエディタ:提出確認書のリマスターバージョンを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( *(hSrl->hRomVersion) != 0xE0 )
{
node->FirstChild->Value = hSrl->hRomVersion->ToString();
}
else
node->FirstChild->Value = hSrl->hRomVersion->ToString("X2");
if( *(hSrl->hRomVersion) == 0xE0 )
{
if( english )
node->FirstChild->Value = gcnew System::String( "E (Preliminary ver.)" );
node->FirstChild->Value += "(Preliminary ver.)";
else
node->FirstChild->Value = gcnew System::String( "E (ŽO”Å)" );
node->FirstChild->Value += "OӁ)";
}
}
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" ) )
{