start working on in-game credits :p

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

8
.gitpod.yml Normal file
View File

@ -0,0 +1,8 @@
# This configuration file was automatically generated by Gitpod.
# Please adjust to your needs (see https://www.gitpod.io/docs/config-gitpod-file)
# and commit this file to your remote git repository to share the goodness with others.
tasks:
- init: make

View File

@ -11,7 +11,7 @@
# Cool people who put up with me on IRC: # Cool people who put up with me on IRC:
- @sh4/@Daisenryaku: 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.

View File

@ -1,3 +1,5 @@
// note to self: later on in the file, the TRUE/FALSE denotes headings.
// thanks to everyone <3
enum enum
{ {
PAGE_TITLE, PAGE_TITLE,
@ -57,6 +59,8 @@ enum
PAGE_EXECUTIVE_DIRECTOR, PAGE_EXECUTIVE_DIRECTOR,
PAGE_EXECUTIVE_PRODUCERS_1, PAGE_EXECUTIVE_PRODUCERS_1,
PAGE_EXECUTIVE_PRODUCERS_2, PAGE_EXECUTIVE_PRODUCERS_2,
PAGE_ROM_HACKING,
PAGE_FEATURES,
PAGE_COUNT 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_NicolaPrattBarlow[] = _("Nicola Pratt-Barlow");
static const u8 sCreditsText_ShellieDow[] = _("Shellie Dow"); 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_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_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};
@ -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_NicolaPrattBarlow[] = { 0, FALSE, sCreditsText_NicolaPrattBarlow};
static const struct CreditsEntry sCreditsEntry_ShellieDow[] = { 0, FALSE, sCreditsText_ShellieDow}; 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_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 #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] =
@ -783,5 +793,12 @@ static const struct CreditsEntry *const sCreditsEntryPointerTable[PAGE_COUNT][EN
_, _,
_, _,
}, },
[PAGE_ROM_HACKING] = {
_,
sCreditsEntry_RomHackingBy,
sCreditsEntry_SuperSonicSataa,
_,
_,
}
}; };
#undef _ #undef _