From 1f2dba2f21ce10237432a3696bdc344af21c33b7 Mon Sep 17 00:00:00 2001 From: "(no author)" <(no author)@b08762b0-b915-fc4b-9d8c-17b2551a87ff> Date: Tue, 5 Aug 2008 05:24:35 +0000 Subject: [PATCH] =?UTF-8?q?=E5=90=8C=E4=B8=80=E3=83=A1=E3=83=BC=E3=82=AB?= =?UTF-8?q?=E3=83=BC=E3=82=BF=E3=82=A4=E3=83=88=E3=83=AB=E4=B8=80=E8=A6=A7?= =?UTF-8?q?=E3=83=86=E3=82=B9=E3=83=88=E3=82=A2=E3=83=97=E3=83=AA=E3=80=81?= =?UTF-8?q?=E3=83=98=E3=83=83=E3=83=80=E3=83=95=E3=82=A1=E3=82=A4=E3=83=AB?= =?UTF-8?q?=E8=BF=BD=E5=8A=A0=20title.h?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: file:///Users/lillianskinner/Downloads/platinum/twl/TwlIPL/trunk@2100 b08762b0-b915-fc4b-9d8c-17b2551a87ff --- .../MakerTitle/TitleList/include/title.h | 48 +++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 build/debugsoft/MakerTitle/TitleList/include/title.h diff --git a/build/debugsoft/MakerTitle/TitleList/include/title.h b/build/debugsoft/MakerTitle/TitleList/include/title.h new file mode 100644 index 00000000..8d235690 --- /dev/null +++ b/build/debugsoft/MakerTitle/TitleList/include/title.h @@ -0,0 +1,48 @@ +/*---------------------------------------------------------------------------* + Project: TwlSDK_IPL - debugsoft - MakerTitle - TitleList + File: title.h + + Copyright 2003 Nintendo. All rights reserved. + + These coded instructions, statements, and computer programs contain + proprietary information of Nintendo of America Inc. and/or Nintendo + Company Ltd., and are protected by Federal copyright law. They may + not be disclosed to third parties or copied or duplicated in any form, + in whole or in part, without the prior written consent of Nintendo. + + $Date:: $ + $Rev$ + $Author$ + *---------------------------------------------------------------------------*/ + +// セーブデータチェック対象ロム +static char* GAMECODE_LIST[] = { + "4KAA", + "4KBA", + "4KCA", + "4KDA", + "4KEA", + "4KFA", + "4KGA", + "4KHA", + "4KIA", + "4KJA", +}; + +static const u32 TITLE_COUNT = sizeof(GAMECODE_LIST) / sizeof(char*); + +// PublicとPrivateの有無 +static BOOL DATA_EXIST[TITLE_COUNT][2] = { + {TRUE, TRUE}, // A + {TRUE, TRUE}, // B + {TRUE, TRUE}, // C + {TRUE, FALSE}, // D + {FALSE, TRUE}, // E + {FALSE, FALSE}, // F + {TRUE, TRUE}, // G + {TRUE, FALSE}, // H + {FALSE, TRUE}, // I + {FALSE, FALSE}, // J + +}; +