LIMITEDカードアプリのSDKバージョンに関するチェックを警告からエラーに格上げ.

git-svn-id: file:///Users/lillianskinner/Downloads/platinum/twl/TwlToolsRED@482 7061adef-622a-194b-ae81-725974e89856
This commit is contained in:
nishikawa_takeshi 2010-01-07 07:50:37 +00:00
parent 93946a2c60
commit 8036d53146
5 changed files with 6 additions and 6 deletions

View File

@ -262,11 +262,11 @@ ECSrlResult RCSrl::mrcTWL( FILE *fp )
System::UInt16 relstep = (System::UInt16)(0xffff & sdk->Code); System::UInt16 relstep = (System::UInt16)(0xffff & sdk->Code);
if( (major == 5) && (minor == 3) && (30000 <= relstep) && (relstep < 30001) ) if( (major == 5) && (minor == 3) && (30000 <= relstep) && (relstep < 30001) )
{ {
this->hWarnList->Add( this->makeMrcError("LimitedCard53") ); this->hErrorList->Add( this->makeMrcError("LimitedCard53") );
} }
else if( (major == 5) && (minor == 2) && (30000 <= relstep) && (relstep < 30003) ) else if( (major == 5) && (minor == 2) && (30000 <= relstep) && (relstep < 30003) )
{ {
this->hWarnList->Add( this->makeMrcError("LimitedCard52") ); this->hErrorList->Add( this->makeMrcError("LimitedCard52") );
} }
} }
} }