マスタエディタ出力チェッカ:中国リージョンの表示に対応。

git-svn-id: file:///Users/lillianskinner/Downloads/platinum/twl/TwlToolsRED@354 7061adef-622a-194b-ae81-725974e89856
This commit is contained in:
nishikawa_takeshi 2009-07-06 12:42:13 +00:00
parent 8e9eb54b79
commit 3db0d10e8a
4 changed files with 4 additions and 0 deletions

View File

@ -56,6 +56,10 @@ System::String^ getRegionString(System::UInt32 region)
{
str += "Korea ";
}
if( region & METWL_MASK_REGION_CHINA )
{
str += "China ";
}
str = str->TrimEnd( ' ' );
str = str->Replace( ' ', ',' );
return str;