some more credits stuff

This commit is contained in:
Jess 2022-05-23 08:40:24 +00:00
parent f25493f84c
commit fa365a48cd
2 changed files with 21 additions and 4 deletions

View File

@ -14,6 +14,7 @@
- @sh4/@Daisyenryaku: you know why. (yes, I'm still using that "clicky clicky `****` frontend" ;)
- @issotm: for running my awful sprite editing attempts through GIMP.
- @cosarara: for showing me how to use `CTRL`+`Shift`+`F` in VSCodium.
- @pokechu22: for helping me make sense of the total mess that is `src/data/credits.h`.
# Cool people who put up with me on Discord/GitHub:
- @Rangi42: sorry for sliding into ur dm's.

View File

@ -1,4 +1,5 @@
// note to self: later on in the file, the TRUE/FALSE denotes headings.
// another note to self: the numbers go unused. (thanks pokechu22!)
// thanks to everyone <3
enum
{
@ -60,7 +61,7 @@ enum
PAGE_EXECUTIVE_PRODUCERS_1,
PAGE_EXECUTIVE_PRODUCERS_2,
PAGE_ROM_HACKING,
PAGE_FEATURES,
PAGE_CODE,
PAGE_COUNT
};
@ -227,8 +228,11 @@ 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_SomeCodeBy[] = _("Some code by:");
static const u8 sCreditsText_Ghoulslash[] = _("ghoulslash");
static const u8 sCreditsText_Louroboros[] = _("LOuroboros");
static const u8 sCreditsText_Asparagus[] = _("Asparagus");
static const u8 sCreditsText_Dunsparce9[] = _("dunsparce9");
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};
@ -388,8 +392,13 @@ 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_RomHackingBy[] = { 0, TRUE, sCreditsText_RomHackingBy};
static const struct CreditsEntry sCreditsEntry_SuperSonicSataa[] = { 0, FALSE, sCreditsText_SuperSonicSataa};
static const struct CreditsEntry sCreditsEntry_SomeCodeBy[] = { 0, TRUE, sCreditsText_SomeCodeBy};
static const struct CreditsEntry sCreditsEntry_Ghoulslash[] = { 0, FALSE, sCreditsText_Ghoulslash};
static const struct CreditsEntry sCreditsEntry_Louroboros[] = { 0, FALSE, sCreditsText_Louroboros};
static const struct CreditsEntry sCreditsEntry_Asparagus[] = { 0, FALSE, sCreditsText_Asparagus};
static const struct CreditsEntry sCreditsEntry_Dunsparce9[] = { 0, FALSE, sCreditsText_Dunsparce9};
#define _ sCreditsEntry_EmptyString
static const struct CreditsEntry *const sCreditsEntryPointerTable[PAGE_COUNT][ENTRIES_PER_PAGE] =
@ -799,6 +808,13 @@ static const struct CreditsEntry *const sCreditsEntryPointerTable[PAGE_COUNT][EN
sCreditsEntry_SuperSonicSataa,
_,
_,
}
},
[PAGE_CODE] = {
sCreditsEntry_SomeCodeBy,
sCreditsEntry_Ghoulslash,
sCreditsEntry_Louroboros,
sCreditsEntry_Asparagus,
sCreditsEntry_Dunsparce9,
},
};
#undef _