Fix crash when selecting "Don't show this again" on the update warning

This commit is contained in:
Maschell 2023-01-14 14:10:59 +01:00
parent c33ef3d872
commit a097915359
1 changed files with 5 additions and 1 deletions

View File

@ -396,7 +396,11 @@ void handleUpdateWarningScreen() {
} else if (vpad.trigger & VPAD_BUTTON_B) {
f = fopen(UPDATE_SKIP_PATH, "w");
if (f) {
fputs("If this file exists, the Autoboot Module will not warn you about not blocking updates", f);
// It's **really** important to have this text on the stack.
// If it's read from the .rodata section the fwrite will softlock the console because the OSEffectiveToPhysical returns NULL for
// everything between 0x00800000 - 0x01000000 at this stage.
const char text[] = "If this file exists, the Autoboot Module will not warn you about not blocking updates";
fputs(text, f);
fclose(f);
}
break;