マスタエディタ:ミドルウェアリストの提出バージョンの表示を16進に変更。

git-svn-id: file:///Users/lillianskinner/Downloads/platinum/twl/TwlIPL/trunk@2629 b08762b0-b915-fc4b-9d8c-17b2551a87ff
This commit is contained in:
nishikawa_takeshi 2008-10-17 00:09:25 +00:00
parent a1b0181f28
commit 4ea14d834f
4 changed files with 1 additions and 1 deletions

View File

@ -253,7 +253,7 @@ System::Void Form1::makeMiddlewareListXml(System::Xml::XmlDocument^ doc)
MasterEditorTWL::appendXmlTag( doc, game, "title-name", this->tboxTitleName->Text );
MasterEditorTWL::appendXmlTag( doc, game, "game-code", this->tboxGameCode->Text );
MasterEditorTWL::appendXmlTag( doc, game, "rom-version", this->tboxRemasterVer->Text );
MasterEditorTWL::appendXmlTag( doc, game, "submit-version", this->numSubmitVersion->Value.ToString() );
MasterEditorTWL::appendXmlTag( doc, game, "submit-version", System::Decimal::ToByte(this->numSubmitVersion->Value).ToString("X") );
// ミドルウェアリスト
System::Xml::XmlElement ^midlist = doc->CreateElement( "middleware-list" );