some more credits stuff
This commit is contained in:
parent
f25493f84c
commit
fa365a48cd
@ -14,6 +14,7 @@
|
|||||||
- @sh4/@Daisyenryaku: you know why. (yes, I'm still using that "clicky clicky `****` frontend" ;)
|
- @sh4/@Daisyenryaku: you know why. (yes, I'm still using that "clicky clicky `****` frontend" ;)
|
||||||
- @issotm: for running my awful sprite editing attempts through GIMP.
|
- @issotm: for running my awful sprite editing attempts through GIMP.
|
||||||
- @cosarara: for showing me how to use `CTRL`+`Shift`+`F` in VSCodium.
|
- @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:
|
# Cool people who put up with me on Discord/GitHub:
|
||||||
- @Rangi42: sorry for sliding into ur dm's.
|
- @Rangi42: sorry for sliding into ur dm's.
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
// note to self: later on in the file, the TRUE/FALSE denotes headings.
|
// 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
|
// thanks to everyone <3
|
||||||
enum
|
enum
|
||||||
{
|
{
|
||||||
@ -60,7 +61,7 @@ enum
|
|||||||
PAGE_EXECUTIVE_PRODUCERS_1,
|
PAGE_EXECUTIVE_PRODUCERS_1,
|
||||||
PAGE_EXECUTIVE_PRODUCERS_2,
|
PAGE_EXECUTIVE_PRODUCERS_2,
|
||||||
PAGE_ROM_HACKING,
|
PAGE_ROM_HACKING,
|
||||||
PAGE_FEATURES,
|
PAGE_CODE,
|
||||||
PAGE_COUNT
|
PAGE_COUNT
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -227,8 +228,11 @@ static const u8 sCreditsText_ShellieDow[] = _("Shellie Dow")
|
|||||||
static const u8 sCreditsText_ErikJohnson[] = _("Erik Johnson");
|
static const u8 sCreditsText_ErikJohnson[] = _("Erik Johnson");
|
||||||
static const u8 sCreditsText_RomHackingBy[] = _("Hacked by:");
|
static const u8 sCreditsText_RomHackingBy[] = _("Hacked by:");
|
||||||
static const u8 sCreditsText_SuperSonicSataa[] = _("sataa");
|
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_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_EmptyString[] = { 0, FALSE, sCreditsText_EmptyString};
|
||||||
static const struct CreditsEntry sCreditsEntry_PkmnEmeraldVersion[] = { 7, TRUE, sCreditsText_PkmnEmeraldVersion};
|
static const struct CreditsEntry sCreditsEntry_PkmnEmeraldVersion[] = { 7, TRUE, sCreditsText_PkmnEmeraldVersion};
|
||||||
static const struct CreditsEntry sCreditsEntry_Credits[] = {11, TRUE, sCreditsText_Credits};
|
static const struct CreditsEntry sCreditsEntry_Credits[] = {11, TRUE, sCreditsText_Credits};
|
||||||
@ -390,6 +394,11 @@ static const struct CreditsEntry sCreditsEntry_ShellieDow[]
|
|||||||
static const struct CreditsEntry sCreditsEntry_ErikJohnson[] = { 0, FALSE, sCreditsText_ErikJohnson};
|
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_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
|
#define _ sCreditsEntry_EmptyString
|
||||||
static const struct CreditsEntry *const sCreditsEntryPointerTable[PAGE_COUNT][ENTRIES_PER_PAGE] =
|
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,
|
sCreditsEntry_SuperSonicSataa,
|
||||||
_,
|
_,
|
||||||
_,
|
_,
|
||||||
}
|
},
|
||||||
|
[PAGE_CODE] = {
|
||||||
|
sCreditsEntry_SomeCodeBy,
|
||||||
|
sCreditsEntry_Ghoulslash,
|
||||||
|
sCreditsEntry_Louroboros,
|
||||||
|
sCreditsEntry_Asparagus,
|
||||||
|
sCreditsEntry_Dunsparce9,
|
||||||
|
},
|
||||||
};
|
};
|
||||||
#undef _
|
#undef _
|
||||||
|
Loading…
Reference in New Issue
Block a user