start working on in-game credits :p
This commit is contained in:
parent
7a1befb261
commit
f25493f84c
8
.gitpod.yml
Normal file
8
.gitpod.yml
Normal 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
|
||||
|
||||
|
@ -11,7 +11,7 @@
|
||||
|
||||
# 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.
|
||||
- @cosarara: for showing me how to use `CTRL`+`Shift`+`F` in VSCodium.
|
||||
|
||||
|
@ -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 _
|
||||
|
Loading…
x
Reference in New Issue
Block a user