mirror of
https://github.com/rvtr/TwlIPL.git
synced 2025-10-31 06:01:12 -04:00
マスタエディタ:ペアレンタルコントロールの読み込み時チェックのバグ修正。
git-svn-id: file:///Users/lillianskinner/Downloads/platinum/twl/TwlIPL/trunk@2450 b08762b0-b915-fc4b-9d8c-17b2551a87ff
This commit is contained in:
parent
0c7c3a3000
commit
043c0b7b7a
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -4192,7 +4192,6 @@ private: System::Windows::Forms::TextBox^ tboxMedia;
|
||||
}
|
||||
|
||||
// TWLŠg’£<E28099>î•ñ
|
||||
//this->tboxTitleIDLo->Text = this->hSrl->hTitleIDLo->ToString("X8");
|
||||
this->tboxTitleIDLo->Text = this->hSrl->hTitleIDLo;
|
||||
this->tboxTitleIDHi->Text = this->hSrl->hTitleIDHi->ToString("X8");
|
||||
this->tboxNormalRomOffset->Text = this->hSrl->hNormalRomOffset->ToString("X8");
|
||||
|
||||
@ -1,8 +1,8 @@
|
||||
#pragma once
|
||||
|
||||
// ビルドスイッチ
|
||||
#define METWL_VER_APPTYPE_USER
|
||||
//#define METWL_VER_APPTYPE_SYSTEM
|
||||
//#define METWL_VER_APPTYPE_USER
|
||||
#define METWL_VER_APPTYPE_SYSTEM
|
||||
//#define METWL_VER_APPTYPE_SECURE
|
||||
//#define METWL_VER_APPTYPE_LAUNCHER
|
||||
|
||||
|
||||
@ -244,7 +244,6 @@ ECDeliverableResult RCDeliverable::writeSpreadsheet(
|
||||
}
|
||||
if( node->FirstChild->Value->Equals( "TagTitleIDLo" ) )
|
||||
{
|
||||
//node->FirstChild->Value = "0x" + hSrl->hTitleIDLo->ToString("X8");
|
||||
node->FirstChild->Value = hSrl->hTitleIDLo;
|
||||
}
|
||||
if( node->FirstChild->Value->Equals( "TagTitleIDHi" ) )
|
||||
|
||||
@ -1455,10 +1455,13 @@ void RCSrl::mrcRating( System::Byte ogn )
|
||||
|
||||
if( *(this->hArrayParentalEffect[ ogn ]) == false )
|
||||
{
|
||||
this->hWarnList->Add( gcnew RCMrcError(
|
||||
"ペアレンタルコントロール情報", 0x2f0, 0x2ff, ognArray[ ogn ] + warnDisableJ,
|
||||
"Parental Control", ognArray[ ogn ] + warnDisableE, true, true ) );
|
||||
this->clearParentalControl( ogn );
|
||||
if( *this->hArrayParentalAlways[ ogn ] || (*this->hArrayParentalRating[ ogn ] != 0 ) )
|
||||
{
|
||||
this->hWarnList->Add( gcnew RCMrcError(
|
||||
"ペアレンタルコントロール情報", 0x2f0, 0x2ff, ognArray[ ogn ] + warnDisableJ,
|
||||
"Parental Control", ognArray[ ogn ] + warnDisableE, true, true ) );
|
||||
this->clearParentalControl( ogn );
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
|
||||
@ -254,8 +254,6 @@ namespace MasterEditorTWL
|
||||
property System::String ^hMakerCode;
|
||||
property System::String ^hPlatform;
|
||||
property System::String ^hRomSize;
|
||||
//property System::Byte ^hForKorea;
|
||||
//property System::Byte ^hForChina;
|
||||
property System::Byte ^hRomVersion;
|
||||
property System::UInt16 ^hHeaderCRC;
|
||||
property System::String ^hLatency; // MROM/1TROM/Illegal
|
||||
@ -269,7 +267,6 @@ namespace MasterEditorTWL
|
||||
property System::UInt32 ^hNormalRomOffset;
|
||||
property System::UInt32 ^hKeyTableRomOffset;
|
||||
property System::Byte ^hEULAVersion; // 編集可能
|
||||
//property System::UInt32 ^hTitleIDLo;
|
||||
property System::String ^hTitleIDLo;
|
||||
property System::UInt32 ^hTitleIDHi;
|
||||
property System::Boolean ^hIsAppLauncher; // TitleIDLoからわかるアプリ種別
|
||||
@ -308,12 +305,6 @@ namespace MasterEditorTWL
|
||||
property System::Boolean ^hIsCommonClientKeyForDebugger;
|
||||
|
||||
// Shared2ファイルサイズ Read Only
|
||||
//property System::UInt32 ^hShared2Size0;
|
||||
//property System::UInt32 ^hShared2Size1;
|
||||
//property System::UInt32 ^hShared2Size2;
|
||||
//property System::UInt32 ^hShared2Size3;
|
||||
//property System::UInt32 ^hShared2Size4;
|
||||
//property System::UInt32 ^hShared2Size5;
|
||||
property cli::array<System::UInt32^> ^hShared2SizeArray;
|
||||
|
||||
// カードリージョン Read Only
|
||||
|
||||
Loading…
Reference in New Issue
Block a user