mirror of
https://github.com/rvtr/TwlIPL.git
synced 2025-10-31 06:01:12 -04:00
同一メーカータイトル一覧テストアプリ、ヘッダファイル追加
title.h git-svn-id: file:///Users/lillianskinner/Downloads/platinum/twl/TwlIPL/trunk@2100 b08762b0-b915-fc4b-9d8c-17b2551a87ff
This commit is contained in:
parent
31733c2458
commit
1f2dba2f21
48
build/debugsoft/MakerTitle/TitleList/include/title.h
Normal file
48
build/debugsoft/MakerTitle/TitleList/include/title.h
Normal file
@ -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
|
||||||
|
|
||||||
|
};
|
||||||
|
|
||||||
Loading…
Reference in New Issue
Block a user