Skip to content

Commit

Permalink
update-1
Browse files Browse the repository at this point in the history
Signed-off-by: Simo <[email protected]>
  • Loading branch information
Simo3ds authored Jul 6, 2024
1 parent a5eb3c5 commit e7a4627
Showing 1 changed file with 26 additions and 26 deletions.
52 changes: 26 additions & 26 deletions arm9/source/config.c
Original file line number Diff line number Diff line change
Expand Up @@ -623,9 +623,9 @@ static size_t saveLumaIniConfigToStr(char *out)
}

if (VERSION_BUILD != 0) {
sprintf(lumaVerStr, "Polari3DS v%d.%d.%d", (int)VERSION_MAJOR, (int)VERSION_MINOR, (int)VERSION_BUILD);
sprintf(lumaVerStr, "Polari3DS-ITA v%d.%d.%d", (int)VERSION_MAJOR, (int)VERSION_MINOR, (int)VERSION_BUILD);
} else {
sprintf(lumaVerStr, "Polari3DS v%d.%d", (int)VERSION_MAJOR, (int)VERSION_MINOR);
sprintf(lumaVerStr, "Polari3DS-ITA v%d.%d", (int)VERSION_MAJOR, (int)VERSION_MINOR);
}

if (ISRELEASE) {
Expand Down Expand Up @@ -830,39 +830,39 @@ void writeConfig(bool isConfigOptions)
writeConfigMcu();

if(updateIni && !writeLumaIniConfig())
error("Error writing the configuration file");
error("Errore nella scrittura del file di config.");
}

void configMenu(bool oldPinStatus, u32 oldPinMode)
{
static const char *multiOptionsText[] = { "Default EmuNAND: 1( ) 2( ) 3( ) 4( )",
"Screen brightness: 4( ) 3( ) 2( ) 1( )",
"Splash: Off( ) Before( ) After( ) payloads",
"PIN lock: Off( ) 4( ) 6( ) 8( ) digits",
static const char *multiOptionsText[] = { "EmuNAND Predefinita.: 1( ) 2( ) 3( ) 4( )",
"Luminosita' schermi: 4( ) 3( ) 2( ) 1( )",
"Splash: Off( ) Prima( ) Dopo( ) le payloads",
"Blocco PIN: Off( ) 4( ) 6( ) 8( ) cifre",
"New 3DS CPU: Off( ) Clock( ) L2( ) Clock+L2( )",
"Hbmenu autoboot: Off( ) 3DS( ) DSi( )",
"Force audio: Off( ) Headphones( ) Speakers( )"
"Avvio auto. hbmenu: Off( ) 3DS( ) DSi( )",
"Forza l'audio su: Off( ) Cuffie( ) Casse( )"
};

static const char *singleOptionsText[] = { "( ) Autoboot EmuNAND",
"( ) Enable loading external FIRMs and modules",
"( ) Enable game patching",
"( ) Redirect app. syscore threads to core2",
"( ) Show NAND or user string in System Settings",
"( ) Show GBA boot screen in patched AGB_FIRM",
"( ) Enable custom upscaling filters for DSi",
"( ) Allow Left+Right / Up+Down combos for DSi",
"( ) Cut 3DS Wifi in sleep mode",
"( ) Set developer UNITINFO",
"( ) Disable Arm11 exception handlers",
"( ) Enable Rosalina on SAFE_FIRM",
"( ) Enable instant reboot + disable Errdisp",
"( ) Show Advanced Settings",
"( ) Enable Nand Cid and Otp hardware patching",
static const char *singleOptionsText[] = { "( ) Avvio auto. EmuNAND",
"( ) Abilita il caricamento di FIRM esterni e moduli",
"( ) Abilita la patch di gioco",
"( ) Reindiriz. i thread app. syscore al core2",
"( ) Mostra la NAND o stringa utente nelle imp. di sis.",
"( ) Mostra la sch. di avvio del GBA nel AGB_FIRM patchato",
"( ) Abilita filtri di upscaling personalizzati per DSi",
"( ) Attiva combo Sinistra+Destra / Su+Giu' per DSi",
"( ) Inter. il WiFi del 3DS in mod. riposo",
"( ) Imposta UNITINFO come sviluppatore",
"( ) Disabilita gli handlers di errori Arm11",
"( ) Abilita Rosalina nel SAFE_FIRM",
"( ) Abilita riavvio istsant. + disabilita Errdisp",
"( ) Mostra le imp. avanzate",
"( ) Abilita il patch hardware di Nand Cid e Otp",

// Should always be the last 2 entries
"\nBoot chainloader",
"\nSave and exit"
"\nAvvia il chainloader",
"\nSalva ed esci"
};

static const char *optionsDescription[] = { "Select the default EmuNAND.\n\n"
Expand Down

0 comments on commit e7a4627

Please sign in to comment.