Add localisation credits to main menu credits

In addition, this adds Ally and mothbeanie to the Localisation
Implementation page credits. Also updated the game complete credits!
This commit is contained in:
TerryCavanagh
2023-12-06 00:34:05 +01:00
committed by Misa
parent e754654926
commit 9a40993b5f
5 changed files with 152 additions and 12 deletions

View File

@@ -58,6 +58,9 @@ static const char* translators[] = {
" Sound of Mystery / craft",
};
/* Hardcoded pagesizes for the translator credits. Simplifies paging backwards and forwards */
static const int translator_pagesize[] = { 8, 9, 8, 10, 10, 4 };
/* Terry's Patrons... */
static const char* superpatrons[] = {
"Anders Ekermo",
@@ -174,7 +177,7 @@ static const char* githubfriends[] = {
};
/* Calculate credits length, finally. */
static const int creditmaxposition = 1228 + (10 * (
static const int creditmaxposition = 1348 + (10 * (
SDL_arraysize(superpatrons) + SDL_arraysize(patrons) + SDL_arraysize(githubfriends)
)) + (12 * SDL_arraysize(translators));