diff --git a/build/debugsoft/MakerTitle/TitleList/ROMセット.xls b/build/debugsoft/MakerTitle/TitleList/ROMset.xls similarity index 80% rename from build/debugsoft/MakerTitle/TitleList/ROMセット.xls rename to build/debugsoft/MakerTitle/TitleList/ROMset.xls index c8ca8de3..adae6360 100644 Binary files a/build/debugsoft/MakerTitle/TitleList/ROMセット.xls and b/build/debugsoft/MakerTitle/TitleList/ROMset.xls differ diff --git a/build/debugsoft/MakerTitle/TitleList/readme.txt b/build/debugsoft/MakerTitle/TitleList/readme.txt index 14200d4a..0ceb1d3a 100644 --- a/build/debugsoft/MakerTitle/TitleList/readme.txt +++ b/build/debugsoft/MakerTitle/TitleList/readme.txt @@ -18,19 +18,21 @@ TitleList @@`{^ƁAgZbg̃Z[uf[^ɑ΂ď݂s܂B @@ʂɊeɑ΂Ă̎sʂ\܂Bʂ̕\̎Ӗ͉L̒ʂłB + PUB PRV ͂ꂼZ[uf[^̗̈L܂B + @@cɏ݂sꂽ @@~c߂Ȃ -@@|cZ[uf[^̈悪݂ȂA܂͎gł +@@|cZ[uf[^̈悪݂Ȃ(PUBPRV݂Ȃ)A܂͎gł @@ރf[^́A"Written by [X]" ŁAXɂ͎g̃iA`Jj܂B @ǂݍ݃eXgF @@a{^ƁAg̃Z[uf[^̓e\邱Ƃł܂B -@@ɂāA݃eXgŎۂɃf[^܂ꂽǂmF邱Ƃł܂B +@@ɂāA݃eXgŎۂɑ̃Avf[^܂ꂽǂmF邱Ƃł܂B @Z[uf[^NAF @@ROM Â݁Aw{^ƁAZbg̃Z[uf[^SăNA܂B Zbg̓e -@@ROMZbg.xlsQƂĂB +@@ROMset.xlsQƂĂB diff --git a/build/debugsoft/MakerTitle/TitleList/src/appmain.c b/build/debugsoft/MakerTitle/TitleList/src/appmain.c index a632232c..a06d5772 100644 --- a/build/debugsoft/MakerTitle/TitleList/src/appmain.c +++ b/build/debugsoft/MakerTitle/TitleList/src/appmain.c @@ -187,7 +187,18 @@ BOOL ReadFile(const char* arc_name, const char* file_name, char* out, int len) res = FS_GetArchiveResultCode(buf); OS_TPrintf("Code:%d\n", res); OS_TPrintf("Open Fail:%s\n", buf); - STD_TSPrintf(out,"Error:%d\n%s Open Failed\n", res, buf); + if(res == FS_RESULT_ERROR) + { + STD_TSPrintf(out, "None.\n"); + } + else if(res == FS_RESULT_NO_ENTRY) + { + STD_TSPrintf(out, "File not found.\n"); + } + else + { + STD_TSPrintf(out,"Error:%d\n%s Open Failed\n", res, buf); + } return FALSE; }