start working on in-game credits :p

This commit is contained in:
2022-05-23 01:45:04 +00:00
parent 7a1befb261
commit f25493f84c
3 changed files with 26 additions and 1 deletions

View File

@ -1,3 +1,5 @@
// note to self: later on in the file, the TRUE/FALSE denotes headings.
// thanks to everyone <3
enum
{
PAGE_TITLE,
@ -57,6 +59,8 @@ enum
PAGE_EXECUTIVE_DIRECTOR,
PAGE_EXECUTIVE_PRODUCERS_1,
PAGE_EXECUTIVE_PRODUCERS_2,
PAGE_ROM_HACKING,
PAGE_FEATURES,
PAGE_COUNT
};
@ -221,6 +225,10 @@ static const u8 sCreditsText_MotoyasuTojima[] = _("Motoyasu Toji
static const u8 sCreditsText_NicolaPrattBarlow[] = _("Nicola Pratt-Barlow");
static const u8 sCreditsText_ShellieDow[] = _("Shellie Dow");
static const u8 sCreditsText_ErikJohnson[] = _("Erik Johnson");
static const u8 sCreditsText_RomHackingBy[] = _("Hacked by:");
static const u8 sCreditsText_SuperSonicSataa[] = _("sataa");
static const u8 sCreditsText_FeaturesBy[] = _("Features by:");
static const u8 sCreditsText_Ghoulslash[] = _("ghoulslash");
static const struct CreditsEntry sCreditsEntry_EmptyString[] = { 0, FALSE, sCreditsText_EmptyString};
static const struct CreditsEntry sCreditsEntry_PkmnEmeraldVersion[] = { 7, TRUE, sCreditsText_PkmnEmeraldVersion};
static const struct CreditsEntry sCreditsEntry_Credits[] = {11, TRUE, sCreditsText_Credits};
@ -380,6 +388,8 @@ static const struct CreditsEntry sCreditsEntry_MotoyasuTojima[]
static const struct CreditsEntry sCreditsEntry_NicolaPrattBarlow[] = { 0, FALSE, sCreditsText_NicolaPrattBarlow};
static const struct CreditsEntry sCreditsEntry_ShellieDow[] = { 0, FALSE, sCreditsText_ShellieDow};
static const struct CreditsEntry sCreditsEntry_ErikJohnson[] = { 0, FALSE, sCreditsText_ErikJohnson};
static const struct CreditsEntry sCreditsEntry_RomHackingBy[] = { 0, TRUE, sCreditsText_RomHackingBy};
static const struct CreditsEntry sCreditsEntry_SuperSonicSataa[] = { 0, FALSE, sCreditsText_SuperSonicSataa};
#define _ sCreditsEntry_EmptyString
static const struct CreditsEntry *const sCreditsEntryPointerTable[PAGE_COUNT][ENTRIES_PER_PAGE] =
@ -783,5 +793,12 @@ static const struct CreditsEntry *const sCreditsEntryPointerTable[PAGE_COUNT][EN
_,
_,
},
[PAGE_ROM_HACKING] = {
_,
sCreditsEntry_RomHackingBy,
sCreditsEntry_SuperSonicSataa,
_,
_,
}
};
#undef _