diff --git a/.gitpod.yml b/.gitpod.yml new file mode 100644 index 0000000..6c59e39 --- /dev/null +++ b/.gitpod.yml @@ -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 + + diff --git a/CREDITS.md b/CREDITS.md index f8753ba..22c341d 100644 --- a/CREDITS.md +++ b/CREDITS.md @@ -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. diff --git a/src/data/credits.h b/src/data/credits.h index 3ae2b1d..4316410 100644 --- a/src/data/credits.h +++ b/src/data/credits.h @@ -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 _