diff --git a/build/tools/MasterEditorTWL/MasterEditorTWL.ncb b/build/tools/MasterEditorTWL/MasterEditorTWL.ncb index 848bf1b3..edb42cae 100644 Binary files a/build/tools/MasterEditorTWL/MasterEditorTWL.ncb and b/build/tools/MasterEditorTWL/MasterEditorTWL.ncb differ diff --git a/build/tools/MasterEditorTWL/MasterEditorTWL.suo b/build/tools/MasterEditorTWL/MasterEditorTWL.suo index bf2964e9..e447ad27 100644 Binary files a/build/tools/MasterEditorTWL/MasterEditorTWL.suo and b/build/tools/MasterEditorTWL/MasterEditorTWL.suo differ diff --git a/build/tools/MasterEditorTWL/MasterEditorTWL/Debug/BuildLog.htm b/build/tools/MasterEditorTWL/MasterEditorTWL/Debug/BuildLog.htm index 2804587f..daf8b5f3 100644 Binary files a/build/tools/MasterEditorTWL/MasterEditorTWL/Debug/BuildLog.htm and b/build/tools/MasterEditorTWL/MasterEditorTWL/Debug/BuildLog.htm differ diff --git a/build/tools/MasterEditorTWL/MasterEditorTWL/deliverable.cpp b/build/tools/MasterEditorTWL/MasterEditorTWL/deliverable.cpp index 6cadab25..bb487fbc 100644 --- a/build/tools/MasterEditorTWL/MasterEditorTWL/deliverable.cpp +++ b/build/tools/MasterEditorTWL/MasterEditorTWL/deliverable.cpp @@ -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 (事前版)" ); + node->FirstChild->Value += "(事前版)"; } } 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" ) ) {